summaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-07-14 15:19:07 +0200
committerWolfgang Denk <wd@denx.de>2008-07-14 15:19:07 +0200
commitd0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90 (patch)
treef751c45fa698dd14edd985b80ae16ad521768457 /drivers/input
parentd7854223c5c85b5849fbf422cc8ac0efef461c37 (diff)
downloadtalos-obmc-uboot-d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90.tar.gz
talos-obmc-uboot-d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90.zip
Code cleanup: fix old style assignment ambiguities like "=-" etc.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/pc_keyb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/pc_keyb.c b/drivers/input/pc_keyb.c
index 81d3e98934..33e7c5f124 100644
--- a/drivers/input/pc_keyb.c
+++ b/drivers/input/pc_keyb.c
@@ -64,7 +64,7 @@ static int kbd_read_data(void)
int val;
unsigned char status;
- val=-1;
+ val = -1;
status = kbd_read_status();
if (status & KBD_STAT_OBF) {
val = kbd_read_input();
OpenPOWER on IntegriCloud