mirror of https://gitee.com/openkylin/linux.git
[PATCH] Add Pseudo LLD 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:
parent
fc3d3ddd3e
commit
bbbe3a41f7
|
@ -221,8 +221,6 @@ static struct bus_type pseudo_lld_bus;
|
||||||
static struct device_driver sdebug_driverfs_driver = {
|
static struct device_driver sdebug_driverfs_driver = {
|
||||||
.name = sdebug_proc_name,
|
.name = sdebug_proc_name,
|
||||||
.bus = &pseudo_lld_bus,
|
.bus = &pseudo_lld_bus,
|
||||||
.probe = sdebug_driver_probe,
|
|
||||||
.remove = sdebug_driver_remove,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static const int check_condition_result =
|
static const int check_condition_result =
|
||||||
|
@ -1796,6 +1794,8 @@ static int pseudo_lld_bus_match(struct device *dev,
|
||||||
static struct bus_type pseudo_lld_bus = {
|
static struct bus_type pseudo_lld_bus = {
|
||||||
.name = "pseudo",
|
.name = "pseudo",
|
||||||
.match = pseudo_lld_bus_match,
|
.match = pseudo_lld_bus_match,
|
||||||
|
.probe = sdebug_driver_probe,
|
||||||
|
.remove = sdebug_driver_remove,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void sdebug_release_adapter(struct device * dev)
|
static void sdebug_release_adapter(struct device * dev)
|
||||||
|
|
Loading…
Reference in New Issue