grove: fix variable type mismatch

These were reported by ISSM compiler.

Jira: ZEP-1179

Change-Id: I10d04c2949ad2a390d4c1159d2342c73108a58b7
Signed-off-by: Jithu Joseph <jithu.joseph@intel.com>
This commit is contained in:
Jithu Joseph 2017-02-08 13:40:27 -08:00 committed by Andrew Boie
commit d625c2bb4c
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ static inline void _sleep(uint32_t sleep_in_ms)
/********************************************
* PUBLIC FUNCTIONS
*******************************************/
void glcd_print(struct device *port, unsigned char *data, uint32_t size)
void glcd_print(struct device *port, char *data, uint32_t size)
{
const struct glcd_driver * const rom = (struct glcd_driver *)
port->config->config_info;