Skip to content

Commit

Permalink
[media] ec168: use DVB UDB macros
Browse files Browse the repository at this point in the history
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Aug 4, 2012
1 parent 232b696 commit 2731d4e
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions drivers/media/dvb/dvb-usb/ec168.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ static int ec168_ec100_frontend_attach(struct dvb_usb_adapter *adap)
{
pr_debug("%s:\n", __func__);
adap->fe[0] = dvb_attach(ec100_attach, &ec168_ec100_config,
&adap->dev->i2c_adap);
&adap_to_d(adap)->i2c_adap);
if (adap->fe[0] == NULL)
return -ENODEV;

Expand Down Expand Up @@ -299,7 +299,7 @@ static int ec168_mxl5003s_tuner_attach(struct dvb_usb_adapter *adap)
{
pr_debug("%s:\n", __func__);
return dvb_attach(mxl5005s_attach, adap->fe[0],
&adap->dev->i2c_adap,
&adap_to_d(adap)->i2c_adap,
&ec168_mxl5003s_config) == NULL ? -ENODEV : 0;
}

Expand All @@ -309,7 +309,7 @@ static int ec168_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
pr_debug("%s: onoff=%d\n", __func__, onoff);
if (onoff)
req.index = 0x0102;
return ec168_ctrl_msg(adap->dev, &req);
return ec168_ctrl_msg(adap_to_d(adap), &req);
}

/* DVB USB Driver stuff */
Expand All @@ -333,16 +333,7 @@ static struct dvb_usb_device_properties ec168_props = {
.num_adapters = 1,
.adapter = {
{
.stream = {
.type = USB_BULK,
.count = 6,
.endpoint = 0x82,
.u = {
.bulk = {
.buffersize = (32*512),
}
}
},
.stream = DVB_USB_STREAM_BULK(0x82, 6, 32 * 512),
}
},
};
Expand Down

0 comments on commit 2731d4e

Please sign in to comment.