diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-11-16 16:41:28 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-04 16:48:32 -0500 |
commit | ba9dc657af86d05d2971633e57d1f6f94ed60472 (patch) | |
tree | 2b57fe680536b5a02e9dd3b8f4d1df33d6f65017 /drivers/usb/serial/keyspan_pda.c | |
parent | 733260ff9c45bd4db60f45d17e8560a4a68dff4d (diff) |
[PATCH] USB: allow usb drivers to disable dynamic ids
This lets drivers, like the usb-serial ones, disable the ability to add
ids from sysfs.
The usb-serial drivers are "odd" in that they are really usb-serial bus
drivers, not usb bus drivers, so the dynamic id logic will have to go
into the usb-serial bus core for those drivers to get that ability.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/serial/keyspan_pda.c')
-rw-r--r-- | drivers/usb/serial/keyspan_pda.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/serial/keyspan_pda.c b/drivers/usb/serial/keyspan_pda.c index cd4f48bd83b6..0d1f15268549 100644 --- a/drivers/usb/serial/keyspan_pda.c +++ b/drivers/usb/serial/keyspan_pda.c | |||
@@ -155,6 +155,7 @@ static struct usb_driver keyspan_pda_driver = { | |||
155 | .probe = usb_serial_probe, | 155 | .probe = usb_serial_probe, |
156 | .disconnect = usb_serial_disconnect, | 156 | .disconnect = usb_serial_disconnect, |
157 | .id_table = id_table_combined, | 157 | .id_table = id_table_combined, |
158 | .no_dynamic_id = 1, | ||
158 | }; | 159 | }; |
159 | 160 | ||
160 | static struct usb_device_id id_table_std [] = { | 161 | static struct usb_device_id id_table_std [] = { |