19cfb95efSAlan Stern /* Unusual Devices File for the Maxtor OneTouch USB hard drive's button
29cfb95efSAlan Stern  *
39cfb95efSAlan Stern  * This program is free software; you can redistribute it and/or modify it
49cfb95efSAlan Stern  * under the terms of the GNU General Public License as published by the
59cfb95efSAlan Stern  * Free Software Foundation; either version 2, or (at your option) any
69cfb95efSAlan Stern  * later version.
79cfb95efSAlan Stern  *
89cfb95efSAlan Stern  * This program is distributed in the hope that it will be useful, but
99cfb95efSAlan Stern  * WITHOUT ANY WARRANTY; without even the implied warranty of
109cfb95efSAlan Stern  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
119cfb95efSAlan Stern  * General Public License for more details.
129cfb95efSAlan Stern  *
139cfb95efSAlan Stern  * You should have received a copy of the GNU General Public License along
149cfb95efSAlan Stern  * with this program; if not, write to the Free Software Foundation, Inc.,
159cfb95efSAlan Stern  * 675 Mass Ave, Cambridge, MA 02139, USA.
169cfb95efSAlan Stern  */
179cfb95efSAlan Stern 
189cfb95efSAlan Stern #if defined(CONFIG_USB_STORAGE_ONETOUCH) || \
199cfb95efSAlan Stern 		defined(CONFIG_USB_STORAGE_ONETOUCH_MODULE)
209cfb95efSAlan Stern 
219cfb95efSAlan Stern /* Submitted by: Nick Sillik <n.sillik@temple.edu>
229cfb95efSAlan Stern  * Needed for OneTouch extension to usb-storage
239cfb95efSAlan Stern  */
249cfb95efSAlan Stern UNUSUAL_DEV(  0x0d49, 0x7000, 0x0000, 0x9999,
259cfb95efSAlan Stern 		"Maxtor",
269cfb95efSAlan Stern 		"OneTouch External Harddrive",
278fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, onetouch_connect_input,
289cfb95efSAlan Stern 		0),
299cfb95efSAlan Stern 
309cfb95efSAlan Stern UNUSUAL_DEV(  0x0d49, 0x7010, 0x0000, 0x9999,
319cfb95efSAlan Stern 		"Maxtor",
329cfb95efSAlan Stern 		"OneTouch External Harddrive",
338fa7fd74SMichal Nazarewicz 		USB_SC_DEVICE, USB_PR_DEVICE, onetouch_connect_input,
349cfb95efSAlan Stern 		0),
359cfb95efSAlan Stern 
369cfb95efSAlan Stern #endif /* defined(CONFIG_USB_STORAGE_ONETOUCH) || ... */
37