[media] dvb_usb_v2: add macro for filling usb_device_id table entry
Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
a0d72d246d
commit
0359b5fa9e
@ -66,6 +66,16 @@ struct dvb_usb_driver_info {
|
||||
const struct dvb_usb_device_properties *props;
|
||||
};
|
||||
|
||||
#define DVB_USB_DEVICE(vend, prod, props_, name_, rc) \
|
||||
.match_flags = USB_DEVICE_ID_MATCH_DEVICE, \
|
||||
.idVendor = (vend), \
|
||||
.idProduct = (prod), \
|
||||
.driver_info = (kernel_ulong_t) &((struct dvb_usb_driver_info) { \
|
||||
.props = (props_), \
|
||||
.name = (name_), \
|
||||
.rc_map = (rc), \
|
||||
})
|
||||
|
||||
struct dvb_usb_device;
|
||||
struct dvb_usb_adapter;
|
||||
struct usb_data_stream;
|
||||
|
Loading…
Reference in New Issue
Block a user