-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alan Stern
authored and
Greg Kroah-Hartman
committed
Mar 24, 2009
1 parent
b1e89a6
commit b27c6f6
Showing
9 changed files
with
131 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c10337846c93bd914dd3003ffb001adc583b313e | ||
refs/heads/master: 9cfb95ef72c637bc9b90260e0f98a23f3f49b1bb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* Unusual Devices File for the Maxtor OneTouch USB hard drive's button | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation; either version 2, or (at your option) any | ||
* later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program; if not, write to the Free Software Foundation, Inc., | ||
* 675 Mass Ave, Cambridge, MA 02139, USA. | ||
*/ | ||
|
||
#if defined(CONFIG_USB_STORAGE_ONETOUCH) || \ | ||
defined(CONFIG_USB_STORAGE_ONETOUCH_MODULE) | ||
|
||
/* Submitted by: Nick Sillik <n.sillik@temple.edu> | ||
* Needed for OneTouch extension to usb-storage | ||
*/ | ||
UNUSUAL_DEV( 0x0d49, 0x7000, 0x0000, 0x9999, | ||
"Maxtor", | ||
"OneTouch External Harddrive", | ||
US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, | ||
0), | ||
|
||
UNUSUAL_DEV( 0x0d49, 0x7010, 0x0000, 0x9999, | ||
"Maxtor", | ||
"OneTouch External Harddrive", | ||
US_SC_DEVICE, US_PR_DEVICE, onetouch_connect_input, | ||
0), | ||
|
||
#endif /* defined(CONFIG_USB_STORAGE_ONETOUCH) || ... */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters