Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331075
b: refs/heads/master
c: b072eee
h: refs/heads/master
i:
  331073: fea8810
  331071: aad044f
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Sep 23, 2012
1 parent 435d448 commit 96427d9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3cedcab88f6ef96bcbe0c70d15c5d841086f9d43
refs/heads/master: b072eee0345efd3edb582466c627364b5fa63a99
28 changes: 16 additions & 12 deletions trunk/drivers/media/usb/dvb-usb-v2/ce6230.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ static int ce6230_ctrl_msg(struct dvb_usb_device *d, struct usb_req *req)
requesttype = (USB_TYPE_VENDOR | USB_DIR_OUT);
break;
default:
pr_debug("%s: unknown command=%02x\n", __func__, req->cmd);
dev_err(&d->udev->dev, "%s: unknown command=%02x\n",
KBUILD_MODNAME, req->cmd);
ret = -EINVAL;
goto error;
}
Expand Down Expand Up @@ -78,8 +79,8 @@ static int ce6230_ctrl_msg(struct dvb_usb_device *d, struct usb_req *req)
buf, req->data_len);

if (ret < 0)
pr_err("%s: usb_control_msg() failed=%d\n", KBUILD_MODNAME,
ret);
dev_err(&d->udev->dev, "%s: usb_control_msg() failed=%d\n",
KBUILD_MODNAME, ret);
else
ret = 0;

Expand Down Expand Up @@ -121,7 +122,8 @@ static int ce6230_i2c_master_xfer(struct i2c_adapter *adap,
req.data = &msg[i+1].buf[0];
ret = ce6230_ctrl_msg(d, &req);
} else {
pr_err("%s: I2C read not implemented\n",
dev_err(&d->udev->dev, "%s: I2C read not " \
"implemented\n",
KBUILD_MODNAME);
ret = -EOPNOTSUPP;
}
Expand Down Expand Up @@ -176,10 +178,12 @@ static struct zl10353_config ce6230_zl10353_config = {

static int ce6230_zl10353_frontend_attach(struct dvb_usb_adapter *adap)
{
pr_debug("%s:\n", __func__);
struct dvb_usb_device *d = adap_to_d(adap);

dev_dbg(&d->udev->dev, "%s:\n", __func__);

adap->fe[0] = dvb_attach(zl10353_attach, &ce6230_zl10353_config,
&adap_to_d(adap)->i2c_adap);
&d->i2c_adap);
if (adap->fe[0] == NULL)
return -ENODEV;

Expand All @@ -205,12 +209,12 @@ static struct mxl5005s_config ce6230_mxl5003s_config = {

static int ce6230_mxl5003s_tuner_attach(struct dvb_usb_adapter *adap)
{
struct dvb_usb_device *d = adap_to_d(adap);
int ret;

pr_debug("%s:\n", __func__);
dev_dbg(&d->udev->dev, "%s:\n", __func__);

ret = dvb_attach(mxl5005s_attach, adap->fe[0],
&adap_to_d(adap)->i2c_adap,
ret = dvb_attach(mxl5005s_attach, adap->fe[0], &d->i2c_adap,
&ce6230_mxl5003s_config) == NULL ? -ENODEV : 0;
return ret;
}
Expand All @@ -219,14 +223,14 @@ static int ce6230_power_ctrl(struct dvb_usb_device *d, int onoff)
{
int ret;

pr_debug("%s: onoff=%d\n", __func__, onoff);
dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);

/* InterfaceNumber 1 / AlternateSetting 0 idle
InterfaceNumber 1 / AlternateSetting 1 streaming */
ret = usb_set_interface(d->udev, 1, onoff);
if (ret)
pr_err("%s: usb_set_interface() failed=%d\n", KBUILD_MODNAME,
ret);
dev_err(&d->udev->dev, "%s: usb_set_interface() failed=%d\n",
KBUILD_MODNAME, ret);

return ret;
}
Expand Down

0 comments on commit 96427d9

Please sign in to comment.