Commit 83ec98be authored by Al Viro's avatar Al Viro

[PATCH] fix breakage in ocp.c

it's ocp_device_...., not ocp_driver_....
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b6298c22
......@@ -189,8 +189,8 @@ ocp_device_resume(struct device *dev)
struct bus_type ocp_bus_type = {
.name = "ocp",
.match = ocp_device_match,
.probe = ocp_driver_probe,
.remove = ocp_driver_remove,
.probe = ocp_device_probe,
.remove = ocp_device_remove,
.suspend = ocp_device_suspend,
.resume = ocp_device_resume,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment