diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2006-12-20 08:07:30 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-12-27 11:20:16 -0500 |
commit | 25821400359d2b3daacfb93303944211b8411ac3 (patch) | |
tree | 024b0e5bc02f5f43ccc984b72bc116408bdaf44e /drivers/media/video | |
parent | 054afee4736677a00982f6414a983dec8ee511db (diff) |
V4L/DVB (4996): Msp3400: fix kthread_run error check
The return value of kthread_run() should be checked by IS_ERR().
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/msp3400-driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c index 295cb994beb0..2fb9fe6a1ae7 100644 --- a/drivers/media/video/msp3400-driver.c +++ b/drivers/media/video/msp3400-driver.c | |||
@@ -949,7 +949,7 @@ static int msp_attach(struct i2c_adapter *adapter, int address, int kind) | |||
949 | if (thread_func) { | 949 | if (thread_func) { |
950 | state->kthread = kthread_run(thread_func, client, "msp34xx"); | 950 | state->kthread = kthread_run(thread_func, client, "msp34xx"); |
951 | 951 | ||
952 | if (state->kthread == NULL) | 952 | if (IS_ERR(state->kthread)) |
953 | v4l_warn(client, "kernel_thread() failed\n"); | 953 | v4l_warn(client, "kernel_thread() failed\n"); |
954 | msp_wake_thread(client); | 954 | msp_wake_thread(client); |
955 | } | 955 | } |