[media] m88ds3103: a couple missing error codes

We need to set some error codes here.

Fixes: f01919e8f5 ('[media] m88ds3103: add I2C client binding')

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Dan Carpenter 2015-06-02 07:20:00 -03:00 committed by Mauro Carvalho Chehab
parent ec8f3386a7
commit 4347df6a7f
1 changed files with 4 additions and 1 deletions

View File

@ -1563,6 +1563,7 @@ static int m88ds3103_probe(struct i2c_client *client,
u8tmp = 0x10;
break;
default:
ret = -EINVAL;
goto err_kfree;
}
@ -1590,8 +1591,10 @@ static int m88ds3103_probe(struct i2c_client *client,
dev->i2c_adapter = i2c_add_mux_adapter(client->adapter, &client->dev,
dev, 0, 0, 0, m88ds3103_select,
m88ds3103_deselect);
if (dev->i2c_adapter == NULL)
if (dev->i2c_adapter == NULL) {
ret = -ENOMEM;
goto err_kfree;
}
/* create dvb_frontend */
memcpy(&dev->fe.ops, &m88ds3103_ops, sizeof(struct dvb_frontend_ops));