From: Michael Krufky Date: Mon, 17 Dec 2007 13:54:06 +0000 (-0300) Subject: V4L/DVB (6837): Convert cx88_input.audioroute to a bitfield X-Git-Tag: v2.6.25-rc1~1235^2~184 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=35e420357bd835d43c76d3ab5e35694be0b56f95;p=karo-tx-linux.git V4L/DVB (6837): Convert cx88_input.audioroute to a bitfield Prevent us from wasting some extra bytes of memory Thanks to Trent Piepho, for pointing this out. Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index a10f94de0d31..0cd2946a2789 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h @@ -228,7 +228,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 {