diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-11-16 13:41:28 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-04 13:48:32 -0800 |
commit | ba9dc657af86d05d2971633e57d1f6f94ed60472 (patch) | |
tree | 2b57fe680536b5a02e9dd3b8f4d1df33d6f65017 /drivers/usb/serial/cp2101.c | |
parent | 733260ff9c45bd4db60f45d17e8560a4a68dff4d (diff) | |
download | kernel_samsung_tuna-ba9dc657af86d05d2971633e57d1f6f94ed60472.zip kernel_samsung_tuna-ba9dc657af86d05d2971633e57d1f6f94ed60472.tar.gz kernel_samsung_tuna-ba9dc657af86d05d2971633e57d1f6f94ed60472.tar.bz2 |
[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/cp2101.c')
-rw-r--r-- | drivers/usb/serial/cp2101.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/serial/cp2101.c b/drivers/usb/serial/cp2101.c index c978700..813bab3 100644 --- a/drivers/usb/serial/cp2101.c +++ b/drivers/usb/serial/cp2101.c @@ -72,6 +72,7 @@ static struct usb_driver cp2101_driver = { .probe = usb_serial_probe, .disconnect = usb_serial_disconnect, .id_table = id_table, + .no_dynamic_id = 1, }; static struct usb_serial_driver cp2101_device = { |