diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-08-13 00:17:09 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-26 00:08:36 -0400 |
commit | d81d9d6b9f7d0af7d4341951d48d296681878f7a (patch) | |
tree | fab4e755eed72f0bbc3e21ef31e5ba299e58cbe2 /drivers/base/class.c | |
parent | 6d99eb33f55879bc71ddba077e09cf8a61129707 (diff) |
deprecate PHYSDEV* keys
deprecate PHYSDEV* values in the uevent environment
These values are no longer needed and inconsistent with the
stacking of class devices. The event environment should not
carry properties of a parent device. The key PHYSDEVDRIVER is
available as DRIVER, PHYDEVBUS is indentical SUBSYSTEM. Class
devices should not carry any of these values.
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/class.c')
-rw-r--r-- | drivers/base/class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index de8908320f23..46336f1b93b6 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -361,7 +361,7 @@ static int class_uevent(struct kset *kset, struct kobject *kobj, char **envp, | |||
361 | pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id); | 361 | pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id); |
362 | 362 | ||
363 | if (class_dev->dev) { | 363 | if (class_dev->dev) { |
364 | /* add physical device, backing this device */ | 364 | /* add device, backing this class device (deprecated) */ |
365 | struct device *dev = class_dev->dev; | 365 | struct device *dev = class_dev->dev; |
366 | char *path = kobject_get_path(&dev->kobj, GFP_KERNEL); | 366 | char *path = kobject_get_path(&dev->kobj, GFP_KERNEL); |
367 | 367 | ||