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 /include/linux/usb.h | |
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 'include/linux/usb.h')
-rw-r--r-- | include/linux/usb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 0dd96ef78c13..8d5829936bc4 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -561,6 +561,8 @@ struct usb_dynids { | |||
561 | * @dynids: used internally to hold the list of dynamically added device | 561 | * @dynids: used internally to hold the list of dynamically added device |
562 | * ids for this driver. | 562 | * ids for this driver. |
563 | * @driver: the driver model core driver structure. | 563 | * @driver: the driver model core driver structure. |
564 | * @no_dynamic_id: if set to 1, the USB core will not allow dynamic ids to be | ||
565 | * added to this driver by preventing the sysfs file from being created. | ||
564 | * | 566 | * |
565 | * USB drivers must provide a name, probe() and disconnect() methods, | 567 | * USB drivers must provide a name, probe() and disconnect() methods, |
566 | * and an id_table. Other driver fields are optional. | 568 | * and an id_table. Other driver fields are optional. |
@@ -597,6 +599,7 @@ struct usb_driver { | |||
597 | 599 | ||
598 | struct usb_dynids dynids; | 600 | struct usb_dynids dynids; |
599 | struct device_driver driver; | 601 | struct device_driver driver; |
602 | unsigned int no_dynamic_id:1; | ||
600 | }; | 603 | }; |
601 | #define to_usb_driver(d) container_of(d, struct usb_driver, driver) | 604 | #define to_usb_driver(d) container_of(d, struct usb_driver, driver) |
602 | 605 | ||