diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-08 16:06:16 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-08 16:06:16 -0300 |
commit | 655e16287856b6732f59e3397bd273d4ec361268 (patch) | |
tree | a305296696e6a70b215129521a0e87f61daa0688 /linux/drivers/media/radio/radio-maestro.c | |
parent | f5a63349b2b9e0daf5c7a993792af521e3dda46f (diff) | |
download | mediapointer-dvb-s2-655e16287856b6732f59e3397bd273d4ec361268.tar.gz mediapointer-dvb-s2-655e16287856b6732f59e3397bd273d4ec361268.tar.bz2 |
Whitespace cleanups at media/radio
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/radio/radio-maestro.c')
-rw-r--r-- | linux/drivers/media/radio/radio-maestro.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/radio/radio-maestro.c b/linux/drivers/media/radio/radio-maestro.c index 613a84142..d93357579 100644 --- a/linux/drivers/media/radio/radio-maestro.c +++ b/linux/drivers/media/radio/radio-maestro.c @@ -2,7 +2,7 @@ * (c) 2000 A. Tlalka, atlka@pg.gda.pl * Notes on the hardware * - * + Frequency control is done digitally + * + Frequency control is done digitally * + No volume control - only mute/unmute - you have to use Aux line volume * control on Maestro card to set the volume * + Radio status (tuned/not_tuned and stereo/mono) is valid some time after @@ -104,7 +104,7 @@ static struct video_device maestro_radio = { struct radio_device { u16 io, /* base of Maestro card radio io (GPIO_DATA)*/ muted, /* VIDEO_AUDIO_MUTE */ - stereo, /* VIDEO_TUNER_STEREO_ON */ + stereo, /* VIDEO_TUNER_STEREO_ON */ tuned; /* signal strength (0 or 0xffff) */ struct mutex lock; }; @@ -123,14 +123,14 @@ static u32 radio_bits_get(struct radio_device *dev) for (l=24;l--;) { outw(STR_CLK, io); /* HI state */ udelay(2); - if(!l) + if(!l) dev->tuned = inw(io) & STR_MOST ? 0 : 0xffff; outw(0, io); /* LO state */ udelay(2); data <<= 1; /* shift data */ rdata = inw(io); if(!l) - dev->stereo = rdata & STR_MOST ? + dev->stereo = rdata & STR_MOST ? 0 : VIDEO_TUNER_STEREO_ON; else if(rdata & STR_DATA) |