2017-11-03 13:28:30 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-04-18 13:09:11 +03:00
|
|
|
/*
|
|
|
|
* Unusual Devices File for the Maxtor OneTouch USB hard drive's button
|
2009-02-12 22:48:33 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(CONFIG_USB_STORAGE_ONETOUCH) || \
|
|
|
|
defined(CONFIG_USB_STORAGE_ONETOUCH_MODULE)
|
|
|
|
|
2016-04-18 13:09:11 +03:00
|
|
|
/*
|
|
|
|
* Submitted by: Nick Sillik <n.sillik@temple.edu>
|
2009-02-12 22:48:33 +03:00
|
|
|
* Needed for OneTouch extension to usb-storage
|
|
|
|
*/
|
|
|
|
UNUSUAL_DEV( 0x0d49, 0x7000, 0x0000, 0x9999,
|
|
|
|
"Maxtor",
|
|
|
|
"OneTouch External Harddrive",
|
2010-10-07 15:05:21 +04:00
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, onetouch_connect_input,
|
2009-02-12 22:48:33 +03:00
|
|
|
0),
|
|
|
|
|
|
|
|
UNUSUAL_DEV( 0x0d49, 0x7010, 0x0000, 0x9999,
|
|
|
|
"Maxtor",
|
|
|
|
"OneTouch External Harddrive",
|
2010-10-07 15:05:21 +04:00
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, onetouch_connect_input,
|
2009-02-12 22:48:33 +03:00
|
|
|
0),
|
|
|
|
|
|
|
|
#endif /* defined(CONFIG_USB_STORAGE_ONETOUCH) || ... */
|