Commit 4329f3c6 authored by Tomas Winkler's avatar Tomas Winkler Committed by Mauro Carvalho Chehab

[media] easycap: easycap_usb_driver should be static to easycap_main.c

Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 8b1fad2f
...@@ -567,7 +567,6 @@ extern bool easycap_readback; ...@@ -567,7 +567,6 @@ extern bool easycap_readback;
extern const struct easycap_standard easycap_standard[]; extern const struct easycap_standard easycap_standard[];
extern struct easycap_format easycap_format[]; extern struct easycap_format easycap_format[];
extern struct v4l2_queryctrl easycap_control[]; extern struct v4l2_queryctrl easycap_control[];
extern struct usb_driver easycap_usb_driver;
extern struct easycap_dongle easycapdc60_dongle[]; extern struct easycap_dongle easycapdc60_dongle[];
#endif /* !__EASYCAP_H__ */ #endif /* !__EASYCAP_H__ */
...@@ -4150,7 +4150,7 @@ static struct usb_device_id easycap_usb_device_id_table[] = { ...@@ -4150,7 +4150,7 @@ static struct usb_device_id easycap_usb_device_id_table[] = {
}; };
MODULE_DEVICE_TABLE(usb, easycap_usb_device_id_table); MODULE_DEVICE_TABLE(usb, easycap_usb_device_id_table);
struct usb_driver easycap_usb_driver = { static struct usb_driver easycap_usb_driver = {
.name = "easycap", .name = "easycap",
.id_table = easycap_usb_device_id_table, .id_table = easycap_usb_device_id_table,
.probe = easycap_usb_probe, .probe = easycap_usb_probe,
......
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