Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1300375

[PATCH v2 1/5] Staging: panel: Use u8 type

From Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
Newsgroups linux.kernel
Subject [PATCH v2 1/5] Staging: panel: Use u8 type
Date 2016-01-03 20:50 +0100
Message-ID <qMWP8-1hw-9@gated-at.bofh.it> (permalink)
References <qMWFr-1cF-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


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>
---
v2: nothing

 drivers/staging/panel/panel.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/panel/panel.c b/drivers/staging/panel/panel.c
index 04d86f3..8bc604d 100644
--- a/drivers/staging/panel/panel.c
+++ b/drivers/staging/panel/panel.c
@@ -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;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/5] Staging: panel: TODO fixes Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:40 +0100
  [PATCH v2 5/5] Staging: panel: Make code more readable Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:50 +0100
  [PATCH  v2 4/5] Staging: panel: Reduce value range for *name Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:50 +0100
  [PATCH v2 3/5] Staging: panel: Remove ULL Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:50 +0100
  [PATCH v2 2/5] Staging: panel: Remove typedef pmask_t Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:50 +0100
  [PATCH v2 1/5] Staging: panel: Use u8 type Ksenija Stanojevic <ksenija.stanojevic@gmail.com> - 2016-01-03 20:50 +0100

csiph-web