|
|
@@ -106,7 +106,7 @@ static struct usb_gadget_strings *dev_strings[] = {
|
|
|
|
|
|
/****************************** Configurations ******************************/
|
|
|
|
|
|
-static int __init do_config(struct usb_configuration *c)
|
|
|
+static int do_config(struct usb_configuration *c)
|
|
|
{
|
|
|
struct hidg_func_node *e, *n;
|
|
|
int status = 0;
|
|
|
@@ -147,7 +147,7 @@ static struct usb_configuration config_driver = {
|
|
|
|
|
|
/****************************** Gadget Bind ******************************/
|
|
|
|
|
|
-static int __init hid_bind(struct usb_composite_dev *cdev)
|
|
|
+static int hid_bind(struct usb_composite_dev *cdev)
|
|
|
{
|
|
|
struct usb_gadget *gadget = cdev->gadget;
|
|
|
struct list_head *tmp;
|
|
|
@@ -205,7 +205,7 @@ static int __init hid_bind(struct usb_composite_dev *cdev)
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
-static int __exit hid_unbind(struct usb_composite_dev *cdev)
|
|
|
+static int hid_unbind(struct usb_composite_dev *cdev)
|
|
|
{
|
|
|
struct hidg_func_node *n;
|
|
|
|
|
|
@@ -216,7 +216,7 @@ static int __exit hid_unbind(struct usb_composite_dev *cdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static int __init hidg_plat_driver_probe(struct platform_device *pdev)
|
|
|
+static int hidg_plat_driver_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct hidg_func_descriptor *func = dev_get_platdata(&pdev->dev);
|
|
|
struct hidg_func_node *entry;
|
|
|
@@ -252,13 +252,13 @@ static int hidg_plat_driver_remove(struct platform_device *pdev)
|
|
|
/****************************** Some noise ******************************/
|
|
|
|
|
|
|
|
|
-static __refdata struct usb_composite_driver hidg_driver = {
|
|
|
+static struct usb_composite_driver hidg_driver = {
|
|
|
.name = "g_hid",
|
|
|
.dev = &device_desc,
|
|
|
.strings = dev_strings,
|
|
|
.max_speed = USB_SPEED_HIGH,
|
|
|
.bind = hid_bind,
|
|
|
- .unbind = __exit_p(hid_unbind),
|
|
|
+ .unbind = hid_unbind,
|
|
|
};
|
|
|
|
|
|
static struct platform_driver hidg_plat_driver = {
|