Staging: panel: Use u8 type
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>
Sun, 3 Jan 2016 19:39:49 +0000 (20:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jan 2016 06:23:38 +0000 (22:23 -0800)
Declare om, im, omask and imask as u8 to remove any confusion if
that describes the 8 bits of the data bus on the parallel port.
Also change return type of lcd_write_data() to u8.

Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/panel/panel.c

index 04d86f3d8e12e79b92b582c87182699e4eb251a9..8bc604d8354154fa766ab25051f1e47dd0747b0c 100644 (file)
@@ -2042,11 +2042,11 @@ static void init_scan_timer(void)
  * corresponding to out and in bits respectively.
  * returns 1 if ok, 0 if error (in which case, nothing is written).
  */
-static int input_name2mask(const char *name, pmask_t *mask, pmask_t *value,
-                          char *imask, char *omask)
+static u8 input_name2mask(const char *name, pmask_t *mask, pmask_t *value,
+                         u8 *imask, u8 *omask)
 {
        static char sigtab[10] = "EeSsPpAaBb";
-       char im, om;
+       u8 im, om;
        pmask_t m, v;
 
        om = 0ULL;
This page took 0.027143 seconds and 5 git commands to generate.