|
@@ -437,9 +437,25 @@ static void ps3_system_bus_shutdown(struct device *_dev)
|
|
dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
|
|
dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int ps3_system_bus_uevent(struct device *_dev, char **envp,
|
|
|
|
+ int num_envp, char *buffer, int buffer_size)
|
|
|
|
+{
|
|
|
|
+ struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev);
|
|
|
|
+ int i = 0, length = 0;
|
|
|
|
+
|
|
|
|
+ if (add_uevent_var(envp, num_envp, &i, buffer, buffer_size,
|
|
|
|
+ &length, "MODALIAS=ps3:%d",
|
|
|
|
+ dev->match_id))
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+
|
|
|
|
+ envp[i] = NULL;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
struct bus_type ps3_system_bus_type = {
|
|
struct bus_type ps3_system_bus_type = {
|
|
.name = "ps3_system_bus",
|
|
.name = "ps3_system_bus",
|
|
.match = ps3_system_bus_match,
|
|
.match = ps3_system_bus_match,
|
|
|
|
+ .uevent = ps3_system_bus_uevent,
|
|
.probe = ps3_system_bus_probe,
|
|
.probe = ps3_system_bus_probe,
|
|
.remove = ps3_system_bus_remove,
|
|
.remove = ps3_system_bus_remove,
|
|
.shutdown = ps3_system_bus_shutdown,
|
|
.shutdown = ps3_system_bus_shutdown,
|