summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@novell.com>2006-10-07 19:54:55 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2007-02-07 18:37:14 (GMT)
commitb7a3e813fb84624166f034e25234f98de5846bfc (patch)
tree5936d2755e6f4fcdbf3a34c743a7840cdc72b9a2 /include
parentf9f852df2faf76a2667949ddb4947d4b8f99f02f (diff)
downloadlinux-fsl-qoriq-b7a3e813fb84624166f034e25234f98de5846bfc.tar.xz
Driver core: allow to delay the uevent at device creation time
For the block subsystem, we want to delay all uevents until the disk has been scanned and allpartitons are already created before the first event is sent out. Signed-off-by: Kay Sievers <kay.sievers@novell.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/device.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index e1e164f..5ca1cdb 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -399,9 +399,10 @@ struct device {
/* class_device migration path */
struct list_head node;
- struct class *class; /* optional*/
+ struct class *class;
dev_t devt; /* dev_t, creates the sysfs "dev" */
struct attribute_group **groups; /* optional groups */
+ int uevent_suppress;
void (*release)(struct device * dev);
};