diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-12-19 14:54:39 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 23:40:34 -0500 |
commit | cbe9c595f1de2e2a98403be2c14bfbc2486e84c4 (patch) | |
tree | c3e3a30bb18e1597dda4bc28c11c3add049e1e02 /drivers/base/driver.c | |
parent | 23b9c1ab5baf368a32b7242bf110ef1f48700d04 (diff) |
Driver: add driver_add_kobj for looney iseries_veth driver
The iseries driver wants to hang kobjects off of its driver, so, to
preserve backwards compatibility, we need to add a call to the driver
core to allow future changes to work properly.
Hopefully no one uses this function in the future and the iseries_veth
driver authors come to their senses so I can remove this hack...
Cc: Dave Larson <larson1@us.ibm.com>
Cc: Santiago Leon <santil@us.ibm.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/driver.c')
-rw-r--r-- | drivers/base/driver.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/base/driver.c b/drivers/base/driver.c index e3b58407fedc..633ae1d70e14 100644 --- a/drivers/base/driver.c +++ b/drivers/base/driver.c | |||
@@ -124,6 +124,30 @@ void driver_remove_file(struct device_driver * drv, struct driver_attribute * at | |||
124 | 124 | ||
125 | 125 | ||
126 | /** | 126 | /** |
127 | * driver_add_kobj - add a kobject below the specified driver | ||
128 | * | ||
129 | * You really don't want to do this, this is only here due to one looney | ||
130 | * iseries driver, go poke those developers if you are annoyed about | ||
131 | * this... | ||
132 | */ | ||
133 | int driver_add_kobj(struct device_driver *drv, struct kobject *kobj, | ||
134 | const char *fmt, ...) | ||
135 | { | ||
136 | va_list args; | ||
137 | char *name; | ||
138 | |||
139 | va_start(args, fmt); | ||
140 | name = kvasprintf(GFP_KERNEL, fmt, args); | ||
141 | va_end(args); | ||
142 | |||
143 | if (!name) | ||
144 | return -ENOMEM; | ||
145 | |||
146 | return kobject_add_ng(kobj, &drv->kobj, "%s", name); | ||
147 | } | ||
148 | EXPORT_SYMBOL_GPL(driver_add_kobj); | ||
149 | |||
150 | /** | ||
127 | * get_driver - increment driver reference count. | 151 | * get_driver - increment driver reference count. |
128 | * @drv: driver. | 152 | * @drv: driver. |
129 | */ | 153 | */ |