diff options
Diffstat (limited to 'drivers/usb/atm/usbatm.c')
-rw-r--r-- | drivers/usb/atm/usbatm.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c index 3e80aa3b917a..8607af758bbd 100644 --- a/drivers/usb/atm/usbatm.c +++ b/drivers/usb/atm/usbatm.c | |||
@@ -93,8 +93,7 @@ static int usbatm_print_packet(struct usbatm_data *instance, const unsigned char | |||
93 | #endif | 93 | #endif |
94 | 94 | ||
95 | #define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>" | 95 | #define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>" |
96 | #define DRIVER_VERSION "1.10" | 96 | #define DRIVER_DESC "Generic USB ATM/DSL I/O" |
97 | #define DRIVER_DESC "Generic USB ATM/DSL I/O, version " DRIVER_VERSION | ||
98 | 97 | ||
99 | static const char usbatm_driver_name[] = "usbatm"; | 98 | static const char usbatm_driver_name[] = "usbatm"; |
100 | 99 | ||
@@ -174,7 +173,7 @@ static int usbatm_atm_ioctl(struct atm_dev *atm_dev, unsigned int cmd, void __us | |||
174 | static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb); | 173 | static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb); |
175 | static int usbatm_atm_proc_read(struct atm_dev *atm_dev, loff_t *pos, char *page); | 174 | static int usbatm_atm_proc_read(struct atm_dev *atm_dev, loff_t *pos, char *page); |
176 | 175 | ||
177 | static struct atmdev_ops usbatm_atm_devops = { | 176 | static const struct atmdev_ops usbatm_atm_devops = { |
178 | .dev_close = usbatm_atm_dev_close, | 177 | .dev_close = usbatm_atm_dev_close, |
179 | .open = usbatm_atm_open, | 178 | .open = usbatm_atm_open, |
180 | .close = usbatm_atm_close, | 179 | .close = usbatm_atm_close, |
@@ -1315,7 +1314,6 @@ module_exit(usbatm_usb_exit); | |||
1315 | MODULE_AUTHOR(DRIVER_AUTHOR); | 1314 | MODULE_AUTHOR(DRIVER_AUTHOR); |
1316 | MODULE_DESCRIPTION(DRIVER_DESC); | 1315 | MODULE_DESCRIPTION(DRIVER_DESC); |
1317 | MODULE_LICENSE("GPL"); | 1316 | MODULE_LICENSE("GPL"); |
1318 | MODULE_VERSION(DRIVER_VERSION); | ||
1319 | 1317 | ||
1320 | /************ | 1318 | /************ |
1321 | ** debug ** | 1319 | ** debug ** |