diff options
Diffstat (limited to 'drivers/usb/gadget/rndis.c')
-rw-r--r-- | drivers/usb/gadget/rndis.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/usb/gadget/rndis.c b/drivers/usb/gadget/rndis.c index a3ad732bc812..d822d822efb3 100644 --- a/drivers/usb/gadget/rndis.c +++ b/drivers/usb/gadget/rndis.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <linux/moduleparam.h> | 25 | #include <linux/moduleparam.h> |
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
27 | #include <linux/errno.h> | 27 | #include <linux/errno.h> |
28 | #include <linux/init.h> | ||
29 | #include <linux/list.h> | 28 | #include <linux/list.h> |
30 | #include <linux/proc_fs.h> | 29 | #include <linux/proc_fs.h> |
31 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
@@ -1142,7 +1141,7 @@ static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS]; | |||
1142 | #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ | 1141 | #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ |
1143 | 1142 | ||
1144 | 1143 | ||
1145 | static int rndis_init(void) | 1144 | int rndis_init(void) |
1146 | { | 1145 | { |
1147 | u8 i; | 1146 | u8 i; |
1148 | 1147 | ||
@@ -1174,9 +1173,8 @@ static int rndis_init(void) | |||
1174 | 1173 | ||
1175 | return 0; | 1174 | return 0; |
1176 | } | 1175 | } |
1177 | module_init(rndis_init); | ||
1178 | 1176 | ||
1179 | static void rndis_exit(void) | 1177 | void rndis_exit(void) |
1180 | { | 1178 | { |
1181 | #ifdef CONFIG_USB_GADGET_DEBUG_FILES | 1179 | #ifdef CONFIG_USB_GADGET_DEBUG_FILES |
1182 | u8 i; | 1180 | u8 i; |
@@ -1188,6 +1186,4 @@ static void rndis_exit(void) | |||
1188 | } | 1186 | } |
1189 | #endif | 1187 | #endif |
1190 | } | 1188 | } |
1191 | module_exit(rndis_exit); | ||
1192 | 1189 | ||
1193 | MODULE_LICENSE("GPL"); | ||