Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Support for the Maxtor OneTouch USB hard drive's button |
| 4 | * |
| 5 | * Current development and maintenance by: |
| 6 | * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu> |
| 7 | * |
| 8 | * Initial work by: |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 9 | * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se> |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 10 | * |
| 11 | * Based on usbmouse.c (Vojtech Pavlik) and xpad.c (Marko Friedemann) |
| 12 | * |
| 13 | */ |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/input.h> |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 16 | #include <linux/slab.h> |
| 17 | #include <linux/module.h> |
David Brownell | ae0dadc | 2006-06-13 10:04:34 -0700 | [diff] [blame] | 18 | #include <linux/usb/input.h> |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 19 | #include "usb.h" |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 20 | #include "debug.h" |
Akinobu Mita | aa519be | 2015-05-06 18:24:21 +0900 | [diff] [blame] | 21 | #include "scsiglue.h" |
| 22 | |
| 23 | #define DRV_NAME "ums-onetouch" |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 24 | |
Maciej Grela | 4246b06 | 2009-02-28 12:39:20 -0800 | [diff] [blame] | 25 | MODULE_DESCRIPTION("Maxtor USB OneTouch hard drive button driver"); |
| 26 | MODULE_AUTHOR("Nick Sillik <n.sillik@temple.edu>"); |
| 27 | MODULE_LICENSE("GPL"); |
Matthias Maennich | 32bca2d | 2019-09-06 11:32:35 +0100 | [diff] [blame] | 28 | MODULE_IMPORT_NS(USB_STORAGE); |
Maciej Grela | 4246b06 | 2009-02-28 12:39:20 -0800 | [diff] [blame] | 29 | |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 30 | #define ONETOUCH_PKT_LEN 0x02 |
| 31 | #define ONETOUCH_BUTTON KEY_PROG1 |
| 32 | |
| 33 | static int onetouch_connect_input(struct us_data *ss); |
Adrian Bunk | 43c1e98 | 2008-04-28 18:39:37 +0300 | [diff] [blame] | 34 | static void onetouch_release_input(void *onetouch_); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 35 | |
| 36 | struct usb_onetouch { |
| 37 | char name[128]; |
| 38 | char phys[64]; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 39 | struct input_dev *dev; /* input device interface */ |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 40 | struct usb_device *udev; /* usb device */ |
| 41 | |
| 42 | struct urb *irq; /* urb for interrupt in report */ |
| 43 | unsigned char *data; /* input data */ |
| 44 | dma_addr_t data_dma; |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 45 | unsigned int is_open:1; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 46 | }; |
| 47 | |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 48 | |
| 49 | /* |
| 50 | * The table of devices |
| 51 | */ |
| 52 | #define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \ |
| 53 | vendorName, productName, useProtocol, useTransport, \ |
| 54 | initFunction, flags) \ |
| 55 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ |
Sebastian Andrzej Siewior | f61870e | 2012-08-28 22:37:13 +0200 | [diff] [blame] | 56 | .driver_info = (flags) } |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 57 | |
Felipe Balbi | e2c83f0 | 2011-11-15 09:53:36 +0200 | [diff] [blame] | 58 | static struct usb_device_id onetouch_usb_ids[] = { |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 59 | # include "unusual_onetouch.h" |
| 60 | { } /* Terminating entry */ |
| 61 | }; |
| 62 | MODULE_DEVICE_TABLE(usb, onetouch_usb_ids); |
| 63 | |
| 64 | #undef UNUSUAL_DEV |
| 65 | |
| 66 | /* |
| 67 | * The flags table |
| 68 | */ |
| 69 | #define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \ |
| 70 | vendor_name, product_name, use_protocol, use_transport, \ |
| 71 | init_function, Flags) \ |
| 72 | { \ |
| 73 | .vendorName = vendor_name, \ |
| 74 | .productName = product_name, \ |
| 75 | .useProtocol = use_protocol, \ |
| 76 | .useTransport = use_transport, \ |
| 77 | .initFunction = init_function, \ |
| 78 | } |
| 79 | |
| 80 | static struct us_unusual_dev onetouch_unusual_dev_list[] = { |
| 81 | # include "unusual_onetouch.h" |
| 82 | { } /* Terminating entry */ |
| 83 | }; |
| 84 | |
| 85 | #undef UNUSUAL_DEV |
| 86 | |
| 87 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 88 | static void usb_onetouch_irq(struct urb *urb) |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 89 | { |
| 90 | struct usb_onetouch *onetouch = urb->context; |
| 91 | signed char *data = onetouch->data; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 92 | struct input_dev *dev = onetouch->dev; |
Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 93 | int status = urb->status; |
| 94 | int retval; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 95 | |
Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 96 | switch (status) { |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 97 | case 0: /* success */ |
| 98 | break; |
| 99 | case -ECONNRESET: /* unlink */ |
| 100 | case -ENOENT: |
| 101 | case -ESHUTDOWN: |
| 102 | return; |
| 103 | /* -EPIPE: should clear the halt */ |
| 104 | default: /* error */ |
| 105 | goto resubmit; |
| 106 | } |
| 107 | |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 108 | input_report_key(dev, ONETOUCH_BUTTON, data[0] & 0x02); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 109 | input_sync(dev); |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 110 | |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 111 | resubmit: |
Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 112 | retval = usb_submit_urb (urb, GFP_ATOMIC); |
| 113 | if (retval) |
Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 114 | dev_err(&dev->dev, "can't resubmit intr, %s-%s/input0, " |
| 115 | "retval %d\n", onetouch->udev->bus->bus_name, |
Greg Kroah-Hartman | 62e5a33 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 116 | onetouch->udev->devpath, retval); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static int usb_onetouch_open(struct input_dev *dev) |
| 120 | { |
Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 121 | struct usb_onetouch *onetouch = input_get_drvdata(dev); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 122 | |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 123 | onetouch->is_open = 1; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 124 | onetouch->irq->dev = onetouch->udev; |
| 125 | if (usb_submit_urb(onetouch->irq, GFP_KERNEL)) { |
Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 126 | dev_err(&dev->dev, "usb_submit_urb failed\n"); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 127 | return -EIO; |
| 128 | } |
| 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | static void usb_onetouch_close(struct input_dev *dev) |
| 134 | { |
Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 135 | struct usb_onetouch *onetouch = input_get_drvdata(dev); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 136 | |
| 137 | usb_kill_urb(onetouch->irq); |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 138 | onetouch->is_open = 0; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 139 | } |
| 140 | |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 141 | #ifdef CONFIG_PM |
| 142 | static void usb_onetouch_pm_hook(struct us_data *us, int action) |
| 143 | { |
| 144 | struct usb_onetouch *onetouch = (struct usb_onetouch *) us->extra; |
| 145 | |
| 146 | if (onetouch->is_open) { |
| 147 | switch (action) { |
| 148 | case US_SUSPEND: |
| 149 | usb_kill_urb(onetouch->irq); |
| 150 | break; |
| 151 | case US_RESUME: |
Oliver Neukum | e5dc8ae | 2009-08-26 19:56:12 +0200 | [diff] [blame] | 152 | if (usb_submit_urb(onetouch->irq, GFP_NOIO) != 0) |
Greg Kroah-Hartman | 802f389 | 2008-08-14 09:37:34 -0700 | [diff] [blame] | 153 | dev_err(&onetouch->irq->dev->dev, |
| 154 | "usb_submit_urb failed\n"); |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 155 | break; |
| 156 | default: |
| 157 | break; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | #endif /* CONFIG_PM */ |
| 162 | |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 163 | static int onetouch_connect_input(struct us_data *ss) |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 164 | { |
| 165 | struct usb_device *udev = ss->pusb_dev; |
| 166 | struct usb_host_interface *interface; |
| 167 | struct usb_endpoint_descriptor *endpoint; |
| 168 | struct usb_onetouch *onetouch; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 169 | struct input_dev *input_dev; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 170 | int pipe, maxp; |
Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 171 | int error = -ENOMEM; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 172 | |
| 173 | interface = ss->pusb_intf->cur_altsetting; |
| 174 | |
Nick Sillik | d6450e1 | 2005-08-17 13:37:34 -0400 | [diff] [blame] | 175 | if (interface->desc.bNumEndpoints != 3) |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 176 | return -ENODEV; |
Nick Sillik | d6450e1 | 2005-08-17 13:37:34 -0400 | [diff] [blame] | 177 | |
| 178 | endpoint = &interface->endpoint[2].desc; |
Luiz Fernando N. Capitulino | 66722a1 | 2006-10-26 13:02:55 -0300 | [diff] [blame] | 179 | if (!usb_endpoint_is_int_in(endpoint)) |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 180 | return -ENODEV; |
| 181 | |
| 182 | pipe = usb_rcvintpipe(udev, endpoint->bEndpointAddress); |
| 183 | maxp = usb_maxpacket(udev, pipe, usb_pipeout(pipe)); |
Dan Carpenter | bba90ae | 2013-03-01 08:14:19 +0300 | [diff] [blame] | 184 | maxp = min(maxp, ONETOUCH_PKT_LEN); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 185 | |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 186 | onetouch = kzalloc(sizeof(struct usb_onetouch), GFP_KERNEL); |
| 187 | input_dev = input_allocate_device(); |
| 188 | if (!onetouch || !input_dev) |
| 189 | goto fail1; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 190 | |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 191 | onetouch->data = usb_alloc_coherent(udev, ONETOUCH_PKT_LEN, |
| 192 | GFP_KERNEL, &onetouch->data_dma); |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 193 | if (!onetouch->data) |
| 194 | goto fail1; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 195 | |
| 196 | onetouch->irq = usb_alloc_urb(0, GFP_KERNEL); |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 197 | if (!onetouch->irq) |
| 198 | goto fail2; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 199 | |
| 200 | onetouch->udev = udev; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 201 | onetouch->dev = input_dev; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 202 | |
| 203 | if (udev->manufacturer) |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 204 | strlcpy(onetouch->name, udev->manufacturer, |
| 205 | sizeof(onetouch->name)); |
| 206 | if (udev->product) { |
| 207 | if (udev->manufacturer) |
| 208 | strlcat(onetouch->name, " ", sizeof(onetouch->name)); |
| 209 | strlcat(onetouch->name, udev->product, sizeof(onetouch->name)); |
| 210 | } |
| 211 | |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 212 | if (!strlen(onetouch->name)) |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 213 | snprintf(onetouch->name, sizeof(onetouch->name), |
| 214 | "Maxtor Onetouch %04x:%04x", |
| 215 | le16_to_cpu(udev->descriptor.idVendor), |
| 216 | le16_to_cpu(udev->descriptor.idProduct)); |
| 217 | |
| 218 | usb_make_path(udev, onetouch->phys, sizeof(onetouch->phys)); |
| 219 | strlcat(onetouch->phys, "/input0", sizeof(onetouch->phys)); |
| 220 | |
| 221 | input_dev->name = onetouch->name; |
| 222 | input_dev->phys = onetouch->phys; |
| 223 | usb_to_input_id(udev, &input_dev->id); |
Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 224 | input_dev->dev.parent = &udev->dev; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 225 | |
| 226 | set_bit(EV_KEY, input_dev->evbit); |
| 227 | set_bit(ONETOUCH_BUTTON, input_dev->keybit); |
| 228 | clear_bit(0, input_dev->keybit); |
| 229 | |
Dmitry Torokhov | 09b7002 | 2007-05-08 00:31:30 -0400 | [diff] [blame] | 230 | input_set_drvdata(input_dev, onetouch); |
| 231 | |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 232 | input_dev->open = usb_onetouch_open; |
| 233 | input_dev->close = usb_onetouch_close; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 234 | |
Dan Carpenter | bba90ae | 2013-03-01 08:14:19 +0300 | [diff] [blame] | 235 | usb_fill_int_urb(onetouch->irq, udev, pipe, onetouch->data, maxp, |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 236 | usb_onetouch_irq, onetouch, endpoint->bInterval); |
| 237 | onetouch->irq->transfer_dma = onetouch->data_dma; |
| 238 | onetouch->irq->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
| 239 | |
| 240 | ss->extra_destructor = onetouch_release_input; |
| 241 | ss->extra = onetouch; |
Matthew Dharm | 7931e1c | 2005-12-04 21:56:51 -0800 | [diff] [blame] | 242 | #ifdef CONFIG_PM |
| 243 | ss->suspend_resume_hook = usb_onetouch_pm_hook; |
| 244 | #endif |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 245 | |
Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 246 | error = input_register_device(onetouch->dev); |
| 247 | if (error) |
| 248 | goto fail3; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 249 | |
| 250 | return 0; |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 251 | |
Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 252 | fail3: usb_free_urb(onetouch->irq); |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 253 | fail2: usb_free_coherent(udev, ONETOUCH_PKT_LEN, |
| 254 | onetouch->data, onetouch->data_dma); |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 255 | fail1: kfree(onetouch); |
| 256 | input_free_device(input_dev); |
Dmitry Torokhov | 17efe15 | 2006-08-01 22:45:28 -0400 | [diff] [blame] | 257 | return error; |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Adrian Bunk | 43c1e98 | 2008-04-28 18:39:37 +0300 | [diff] [blame] | 260 | static void onetouch_release_input(void *onetouch_) |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 261 | { |
| 262 | struct usb_onetouch *onetouch = (struct usb_onetouch *) onetouch_; |
| 263 | |
| 264 | if (onetouch) { |
| 265 | usb_kill_urb(onetouch->irq); |
Dmitry Torokhov | 8878967 | 2005-09-15 02:01:43 -0500 | [diff] [blame] | 266 | input_unregister_device(onetouch->dev); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 267 | usb_free_urb(onetouch->irq); |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 268 | usb_free_coherent(onetouch->udev, ONETOUCH_PKT_LEN, |
| 269 | onetouch->data, onetouch->data_dma); |
Matthew Dharm | 34008db | 2005-07-28 14:49:01 -0700 | [diff] [blame] | 270 | } |
| 271 | } |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 272 | |
Akinobu Mita | aa519be | 2015-05-06 18:24:21 +0900 | [diff] [blame] | 273 | static struct scsi_host_template onetouch_host_template; |
| 274 | |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 275 | static int onetouch_probe(struct usb_interface *intf, |
| 276 | const struct usb_device_id *id) |
| 277 | { |
| 278 | struct us_data *us; |
| 279 | int result; |
| 280 | |
| 281 | result = usb_stor_probe1(&us, intf, id, |
Akinobu Mita | aa519be | 2015-05-06 18:24:21 +0900 | [diff] [blame] | 282 | (id - onetouch_usb_ids) + onetouch_unusual_dev_list, |
| 283 | &onetouch_host_template); |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 284 | if (result) |
| 285 | return result; |
| 286 | |
| 287 | /* Use default transport and protocol */ |
| 288 | |
| 289 | result = usb_stor_probe2(us); |
| 290 | return result; |
| 291 | } |
| 292 | |
| 293 | static struct usb_driver onetouch_driver = { |
Akinobu Mita | aa519be | 2015-05-06 18:24:21 +0900 | [diff] [blame] | 294 | .name = DRV_NAME, |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 295 | .probe = onetouch_probe, |
| 296 | .disconnect = usb_stor_disconnect, |
| 297 | .suspend = usb_stor_suspend, |
| 298 | .resume = usb_stor_resume, |
| 299 | .reset_resume = usb_stor_reset_resume, |
| 300 | .pre_reset = usb_stor_pre_reset, |
| 301 | .post_reset = usb_stor_post_reset, |
| 302 | .id_table = onetouch_usb_ids, |
| 303 | .soft_unbind = 1, |
Huajun Li | e73b2db | 2012-01-14 10:15:21 +0800 | [diff] [blame] | 304 | .no_dynamic_id = 1, |
Alan Stern | 9cfb95e | 2009-02-12 14:48:33 -0500 | [diff] [blame] | 305 | }; |
| 306 | |
Akinobu Mita | aa519be | 2015-05-06 18:24:21 +0900 | [diff] [blame] | 307 | module_usb_stor_driver(onetouch_driver, onetouch_host_template, DRV_NAME); |