[PATCH] fix breakage in ocp.c
it's ocp_device_...., not ocp_driver_.... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
b6298c22c5
commit
83ec98be05
1 changed files with 2 additions and 2 deletions
|
@ -189,8 +189,8 @@ ocp_device_resume(struct device *dev)
|
||||||
struct bus_type ocp_bus_type = {
|
struct bus_type ocp_bus_type = {
|
||||||
.name = "ocp",
|
.name = "ocp",
|
||||||
.match = ocp_device_match,
|
.match = ocp_device_match,
|
||||||
.probe = ocp_driver_probe,
|
.probe = ocp_device_probe,
|
||||||
.remove = ocp_driver_remove,
|
.remove = ocp_device_remove,
|
||||||
.suspend = ocp_device_suspend,
|
.suspend = ocp_device_suspend,
|
||||||
.resume = ocp_device_resume,
|
.resume = ocp_device_resume,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue