[PATCH] Add serio bus_type probe and remove methods
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Родитель
29a4a20e9f
Коммит
30226f8199
|
@ -59,9 +59,7 @@ static DECLARE_MUTEX(serio_sem);
|
||||||
|
|
||||||
static LIST_HEAD(serio_list);
|
static LIST_HEAD(serio_list);
|
||||||
|
|
||||||
static struct bus_type serio_bus = {
|
static struct bus_type serio_bus;
|
||||||
.name = "serio",
|
|
||||||
};
|
|
||||||
|
|
||||||
static void serio_add_port(struct serio *serio);
|
static void serio_add_port(struct serio *serio);
|
||||||
static void serio_destroy_port(struct serio *serio);
|
static void serio_destroy_port(struct serio *serio);
|
||||||
|
@ -750,11 +748,15 @@ static int serio_driver_remove(struct device *dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct bus_type serio_bus = {
|
||||||
|
.name = "serio",
|
||||||
|
.probe = serio_driver_probe,
|
||||||
|
.remove = serio_driver_remove,
|
||||||
|
};
|
||||||
|
|
||||||
void __serio_register_driver(struct serio_driver *drv, struct module *owner)
|
void __serio_register_driver(struct serio_driver *drv, struct module *owner)
|
||||||
{
|
{
|
||||||
drv->driver.bus = &serio_bus;
|
drv->driver.bus = &serio_bus;
|
||||||
drv->driver.probe = serio_driver_probe;
|
|
||||||
drv->driver.remove = serio_driver_remove;
|
|
||||||
|
|
||||||
serio_queue_event(drv, owner, SERIO_REGISTER_DRIVER);
|
serio_queue_event(drv, owner, SERIO_REGISTER_DRIVER);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче