Skip to content

Commit

Permalink
[media] staging: media: cxd2099: fix sparse warnings in cxd2099_attach
Browse files Browse the repository at this point in the history
The following sparse warnings were fixed

drivers/staging/media/cxd2099/cxd2099.c:686:26: warning: Using plain integer as NULL pointer
drivers/staging/media/cxd2099/cxd2099.c:691:24: warning: Using plain integer as NULL pointer
drivers/staging/media/cxd2099/cxd2099.c:696:24: warning: Using plain integer as NULL pointer

Signed-off-by: Devendra Naga <develkernel412222@gmail.com>
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Cc: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Devendra Naga authored and Mauro Carvalho Chehab committed Aug 12, 2012
1 parent 0bc9c89 commit 4aff355
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/media/cxd2099/cxd2099.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,17 +683,17 @@ struct dvb_ca_en50221 *cxd2099_attach(struct cxd2099_cfg *cfg,
void *priv,
struct i2c_adapter *i2c)
{
struct cxd *ci = 0;
struct cxd *ci;
u8 val;

if (i2c_read_reg(i2c, cfg->adr, 0, &val) < 0) {
printk(KERN_INFO "No CXD2099 detected at %02x\n", cfg->adr);
return 0;
return NULL;
}

ci = kmalloc(sizeof(struct cxd), GFP_KERNEL);
if (!ci)
return 0;
return NULL;
memset(ci, 0, sizeof(*ci));

mutex_init(&ci->lock);
Expand Down

0 comments on commit 4aff355

Please sign in to comment.