diff options
author | Andrew Morton <[email protected]> | 2006-09-25 17:00:52 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2006-09-27 12:45:07 -0700 |
commit | 7f38aa0f04259d37f26e1e906607f1ebb39c0c5c (patch) | |
tree | c4f8c46d467b1a461f3e87b23667a315a72da34e | |
parent | 5dda171202f94127e49c12daf780cdae1b4e668b (diff) |
[PATCH] USB Storage: fix Rio Karma eject support build error
In file included from drivers/usb/storage/usb.c:180:
drivers/usb/storage/unusual_devs.h:221: error: 'US_PR_KARMA' undeclared here (not in a function)
drivers/usb/storage/unusual_devs.h:221: error: 'rio_karma_init' undeclared here (not in a function)
Cc: Keith Bennett <[email protected]>
Acked-by: Bob Copeland <[email protected]>
Cc: Matthew Dharm <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/storage/unusual_devs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 1f11c9d44eaa..40bf159f7d54 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -218,10 +218,12 @@ UNUSUAL_DEV( 0x0457, 0x0151, 0x0100, 0x0100, US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), +#ifdef CONFIG_USB_STORAGE_KARMA UNUSUAL_DEV( 0x045a, 0x5210, 0x0101, 0x0101, "Rio", "Rio Karma", US_SC_SCSI, US_PR_KARMA, rio_karma_init, 0), +#endif /* Patch submitted by Philipp Friedrich <[email protected]> */ UNUSUAL_DEV( 0x0482, 0x0100, 0x0100, 0x0100, |