diff options
| author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-08-08 09:10:15 -0300 | 
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-08-08 15:53:03 -0300 | 
| commit | e335fada5afef0658038b6bec432d37f332da9fc (patch) | |
| tree | 93aaf4228723915db153bbf9eaaa7d0c57e2db90 /drivers/media | |
| parent | 17531c168c7b8138b5379a85de788798fc6696e1 (diff) | |
| download | linux-e335fada5afef0658038b6bec432d37f332da9fc.tar.bz2 | |
V4L/DVB (4418): Fix broken msp3400 module option 'standard'
Due to a wrong statement order the 'standard' module option didn't
work for 'G' model chips.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
| -rw-r--r-- | drivers/media/video/msp3400-kthreads.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/media/video/msp3400-kthreads.c b/drivers/media/video/msp3400-kthreads.c index f2fd9195b3ac..ed02ff811388 100644 --- a/drivers/media/video/msp3400-kthreads.c +++ b/drivers/media/video/msp3400-kthreads.c @@ -961,10 +961,10 @@ int msp34xxg_thread(void *data)  		/* setup the chip*/  		msp34xxg_reset(client);  		state->std = state->radio ? 0x40 : msp_standard; -		if (state->std != 1) -			goto unmute;  		/* start autodetect */  		msp_write_dem(client, 0x20, state->std); +		if (state->std != 1) +			goto unmute;  		/* watch autodetect */  		v4l_dbg(1, msp_debug, client, "started autodetect, waiting for result\n"); |