aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/em28xx/em28xx-input.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@brturbo.com.br>2005-11-09 00:37:36 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-11-09 10:56:19 -0500
commit4f9c05aa727a3b27e28972f2f3938b29ad81b833 (patch)
treed495fd8b59d2a85d0f6dd6329eb06277f5ed3678 /drivers/media/video/em28xx/em28xx-input.c
parente43f14af143921ac6680aa3ddfff111bef4e034a (diff)
[PATCH] v4l: 791: codingstyle fixes
- CodingStyle fixes Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br> Signed-off-by: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/em28xx/em28xx-input.c')
-rw-r--r--drivers/media/video/em28xx/em28xx-input.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/video/em28xx/em28xx-input.c b/drivers/media/video/em28xx/em28xx-input.c
index 3800b99e4b86..0576ad6c42b7 100644
--- a/drivers/media/video/em28xx/em28xx-input.c
+++ b/drivers/media/video/em28xx/em28xx-input.c
@@ -86,15 +86,15 @@ static int get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
86 } 86 }
87 87
88 /* it seems that 0xFE indicates that a button is still hold 88 /* it seems that 0xFE indicates that a button is still hold
89 down, while 0xFF indicates that no button is hold 89 down, while 0xff indicates that no button is hold
90 down. 0xFE sequences are sometimes interrupted by 0xFF */ 90 down. 0xfe sequences are sometimes interrupted by 0xFF */
91 91
92 dprintk("key %02x\n", b); 92 dprintk("key %02x\n", b);
93 93
94 if (b == 0xFF) 94 if (b == 0xff)
95 return 0; 95 return 0;
96 96
97 if (b == 0xFE) 97 if (b == 0xfe)
98 /* keep old data */ 98 /* keep old data */
99 return 1; 99 return 1;
100 100