Commit 978c26c3 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] az6007: Use a per device private struct

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 781dacc8
...@@ -82,7 +82,7 @@ static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable) ...@@ -82,7 +82,7 @@ static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
if (!adap) if (!adap)
return -EINVAL; return -EINVAL;
st = adap->priv; st = adap->dev->priv;
if (!st) if (!st)
return -EINVAL; return -EINVAL;
...@@ -288,7 +288,7 @@ static int az6007_led_on_off(struct usb_interface *intf, int onoff) ...@@ -288,7 +288,7 @@ static int az6007_led_on_off(struct usb_interface *intf, int onoff)
static int az6007_frontend_attach(struct dvb_usb_adapter *adap) static int az6007_frontend_attach(struct dvb_usb_adapter *adap)
{ {
struct az6007_device_state *st = adap->priv; struct az6007_device_state *st = adap->dev->priv;
BUG_ON(!st); BUG_ON(!st);
...@@ -311,7 +311,7 @@ static int az6007_frontend_attach(struct dvb_usb_adapter *adap) ...@@ -311,7 +311,7 @@ static int az6007_frontend_attach(struct dvb_usb_adapter *adap)
static int az6007_tuner_attach(struct dvb_usb_adapter *adap) static int az6007_tuner_attach(struct dvb_usb_adapter *adap)
{ {
struct az6007_device_state *st = adap->priv; struct az6007_device_state *st = adap->dev->priv;
if (st->tuner_attached) if (st->tuner_attached)
return 0; return 0;
...@@ -516,7 +516,7 @@ static struct dvb_usb_device_properties az6007_properties = { ...@@ -516,7 +516,7 @@ static struct dvb_usb_device_properties az6007_properties = {
.usb_ctrl = CYPRESS_FX2, .usb_ctrl = CYPRESS_FX2,
.firmware = "dvb-usb-terratec-h7-az6007.fw", .firmware = "dvb-usb-terratec-h7-az6007.fw",
.no_reconnect = 1, .no_reconnect = 1,
.size_of_priv = sizeof(struct az6007_device_state),
.identify_state = az6007_identify_state, .identify_state = az6007_identify_state,
.num_adapters = 1, .num_adapters = 1,
.adapter = { .adapter = {
...@@ -538,7 +538,6 @@ static struct dvb_usb_device_properties az6007_properties = { ...@@ -538,7 +538,6 @@ static struct dvb_usb_device_properties az6007_properties = {
} }
} }
}, },
.size_of_priv = sizeof(struct az6007_device_state),
}} }}
} }, } },
.power_ctrl = az6007_power_ctrl, .power_ctrl = az6007_power_ctrl,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment