diff options
Diffstat (limited to 'drivers/media/video/msp3400-driver.c')
-rw-r--r-- | drivers/media/video/msp3400-driver.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index e1b56dc13c3f..2fb9fe6a1ae7 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -633,10 +633,8 @@ static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
633 | if (((rt->input >> (4 + i * 4)) & 0xf) == 0) | 633 | if (((rt->input >> (4 + i * 4)) & 0xf) == 0) |
634 | extern_input = 0; | 634 | extern_input = 0; |
635 | } | 635 | } |
636 | if (extern_input) | 636 | state->mode = extern_input ? MSP_MODE_EXTERN : MSP_MODE_AM_DETECT; |
637 | state->mode = MSP_MODE_EXTERN; | 637 | state->rxsubchans = V4L2_TUNER_SUB_STEREO; |
638 | else | ||
639 | state->mode = MSP_MODE_AM_DETECT; | ||
640 | msp_set_scart(client, sc_in, 0); | 638 | msp_set_scart(client, sc_in, 0); |
641 | msp_set_scart(client, sc1_out, 1); | 639 | msp_set_scart(client, sc1_out, 1); |
642 | msp_set_scart(client, sc2_out, 2); | 640 | msp_set_scart(client, sc2_out, 2); |
@@ -951,7 +949,7 @@ static int msp_attach(struct i2c_adapter *adapter, int address, int kind) | |||
951 | if (thread_func) { | 949 | if (thread_func) { |
952 | state->kthread = kthread_run(thread_func, client, "msp34xx"); | 950 | state->kthread = kthread_run(thread_func, client, "msp34xx"); |
953 | 951 | ||
954 | if (state->kthread == NULL) | 952 | if (IS_ERR(state->kthread)) |
955 | v4l_warn(client, "kernel_thread() failed\n"); | 953 | v4l_warn(client, "kernel_thread() failed\n"); |
956 | msp_wake_thread(client); | 954 | msp_wake_thread(client); |
957 | } | 955 | } |