diff options
Diffstat (limited to 'drivers/media/dvb/frontends/stv6110x.c')
-rw-r--r-- | drivers/media/dvb/frontends/stv6110x.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/media/dvb/frontends/stv6110x.c b/drivers/media/dvb/frontends/stv6110x.c index 2f9cd2441340..42591ce1aaad 100644 --- a/drivers/media/dvb/frontends/stv6110x.c +++ b/drivers/media/dvb/frontends/stv6110x.c | |||
@@ -363,8 +363,8 @@ struct stv6110x_devctl *stv6110x_attach(struct dvb_frontend *fe, | |||
363 | u8 default_regs[] = {0x07, 0x11, 0xdc, 0x85, 0x17, 0x01, 0xe6, 0x1e}; | 363 | u8 default_regs[] = {0x07, 0x11, 0xdc, 0x85, 0x17, 0x01, 0xe6, 0x1e}; |
364 | 364 | ||
365 | stv6110x = kzalloc(sizeof (struct stv6110x_state), GFP_KERNEL); | 365 | stv6110x = kzalloc(sizeof (struct stv6110x_state), GFP_KERNEL); |
366 | if (stv6110x == NULL) | 366 | if (!stv6110x) |
367 | goto error; | 367 | return NULL; |
368 | 368 | ||
369 | stv6110x->i2c = i2c; | 369 | stv6110x->i2c = i2c; |
370 | stv6110x->config = config; | 370 | stv6110x->config = config; |
@@ -392,12 +392,8 @@ struct stv6110x_devctl *stv6110x_attach(struct dvb_frontend *fe, | |||
392 | fe->tuner_priv = stv6110x; | 392 | fe->tuner_priv = stv6110x; |
393 | fe->ops.tuner_ops = stv6110x_ops; | 393 | fe->ops.tuner_ops = stv6110x_ops; |
394 | 394 | ||
395 | printk("%s: Attaching STV6110x \n", __func__); | 395 | printk(KERN_INFO "%s: Attaching STV6110x\n", __func__); |
396 | return stv6110x->devctl; | 396 | return stv6110x->devctl; |
397 | |||
398 | error: | ||
399 | kfree(stv6110x); | ||
400 | return NULL; | ||
401 | } | 397 | } |
402 | EXPORT_SYMBOL(stv6110x_attach); | 398 | EXPORT_SYMBOL(stv6110x_attach); |
403 | 399 | ||