Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18396
b: refs/heads/master
c: b6a01e9
h: refs/heads/master
v: v3
  • Loading branch information
Russell King authored and Greg Kroah-Hartman committed Jan 13, 2006
1 parent 51c2b60 commit 5605e8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac33bc3d54936d364c1f979e50f43dfa3f9a13c1
refs/heads/master: b6a01e9bda69aaf22f3a23bafc91c0fb51420a7a
4 changes: 2 additions & 2 deletions trunk/drivers/zorro/zorro-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ int zorro_register_driver(struct zorro_driver *drv)
/* initialize common driver fields */
drv->driver.name = drv->name;
drv->driver.bus = &zorro_bus_type;
drv->driver.probe = zorro_device_probe;

/* register with core */
count = driver_register(&drv->driver);
Expand Down Expand Up @@ -132,7 +131,8 @@ static int zorro_bus_match(struct device *dev, struct device_driver *drv)

struct bus_type zorro_bus_type = {
.name = "zorro",
.match = zorro_bus_match
.match = zorro_bus_match,
.probe = zorro_device_probe,
};


Expand Down

0 comments on commit 5605e8b

Please sign in to comment.