diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-17 11:54:06 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-12-17 11:54:06 -0200 |
commit | fd0eb1330fbf94092ddce4459864e00f9ffded65 (patch) | |
tree | a52c5c736f7600e42f7a4463a345d1d352ddfe14 /linux/drivers/media/video/cx88/cx88.h | |
parent | 9b9f1ee84c2c20af88227ddde46fcc3114692c89 (diff) | |
download | mediapointer-dvb-s2-fd0eb1330fbf94092ddce4459864e00f9ffded65.tar.gz mediapointer-dvb-s2-fd0eb1330fbf94092ddce4459864e00f9ffded65.tar.bz2 |
Convert cx88_input.audioroute to a bitfield
From: Michael Krufky <mkrufky@linuxtv.org>
Prevent us from wasting some extra bytes of memory
Thanks to Trent Piepho, for pointing this out.
Cc: Trent Piepho <xyzzy@speakeasy.org>
Cc: Ricardo Cerqueira <v4l@cerqueira.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88.h')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88.h b/linux/drivers/media/video/cx88/cx88.h index b193a26ce..0f32cbfbb 100644 --- a/linux/drivers/media/video/cx88/cx88.h +++ b/linux/drivers/media/video/cx88/cx88.h @@ -231,7 +231,7 @@ struct cx88_input { enum cx88_itype type; u32 gpio0, gpio1, gpio2, gpio3; unsigned int vmux:2; - unsigned int audioroute; + unsigned int audioroute:2; }; struct cx88_board { |