Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 18384
b: refs/heads/master
c: 5b34bf8
h: refs/heads/master
v: v3
  • Loading branch information
Russell King authored and Greg Kroah-Hartman committed Jan 13, 2006
1 parent 8bf41aa commit 7962ff8
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: 2f53a80fc0f6287d4bd6cc2422cd095c90f30410
refs/heads/master: 5b34bf88779fa965a134b92ab61688e0d1ddfe1d
4 changes: 2 additions & 2 deletions trunk/drivers/dio/dio-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ int dio_register_driver(struct dio_driver *drv)
/* initialize common driver fields */
drv->driver.name = drv->name;
drv->driver.bus = &dio_bus_type;
drv->driver.probe = dio_device_probe;

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

struct bus_type dio_bus_type = {
.name = "dio",
.match = dio_bus_match
.match = dio_bus_match,
.probe = dio_device_probe,
};


Expand Down

0 comments on commit 7962ff8

Please sign in to comment.