Skip to content

Commit

Permalink
[PATCH] fix breakage in ocp.c
Browse files Browse the repository at this point in the history
it's ocp_device_...., not ocp_driver_....

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent b6298c2 commit 83ec98b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/ppc/syslib/ocp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 83ec98b

Please sign in to comment.