uevent environment changes fallout
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -321,23 +321,17 @@ static int ssb_bus_match(struct device *dev, struct device_driver *drv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ssb_device_uevent(struct device *dev, char **envp, int num_envp,
|
||||
char *buffer, int buffer_size)
|
||||
static int ssb_device_uevent(struct device *dev, struct kobj_uevent_env *env)
|
||||
{
|
||||
struct ssb_device *ssb_dev = dev_to_ssb_dev(dev);
|
||||
int ret, i = 0, length = 0;
|
||||
|
||||
if (!dev)
|
||||
return -ENODEV;
|
||||
|
||||
ret = add_uevent_var(envp, num_envp, &i,
|
||||
buffer, buffer_size, &length,
|
||||
return add_uevent_var(env,
|
||||
"MODALIAS=ssb:v%04Xid%04Xrev%02X",
|
||||
ssb_dev->id.vendor, ssb_dev->id.coreid,
|
||||
ssb_dev->id.revision);
|
||||
envp[i] = NULL;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static struct bus_type ssb_bustype = {
|
||||
|
Reference in New Issue
Block a user