Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236314
b: refs/heads/master
c: 38fadc3
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent 410881e commit 336957b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: 94851c343d1f98f866760c96a8956e30b07e579c
refs/heads/master: 38fadc3e1f2ed55544acb75823ba7b2929597f68
2 changes: 1 addition & 1 deletion trunk/drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static int blkvsc_drv_init(int (*drv_init)(struct hv_driver *drv))

drv_ctx->driver.probe = blkvsc_probe;
drv_ctx->driver.remove = blkvsc_remove;
drv_ctx->shutdown = blkvsc_shutdown;
drv_ctx->driver.shutdown = blkvsc_shutdown;

/* The driver belongs to vmbus */
ret = vmbus_child_driver_register(drv_ctx);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1000,8 +1000,8 @@ static void vmbus_shutdown(struct device *child_device)
driver_ctx = driver_to_driver_context(child_device->driver);

/* Let the specific open-source driver handles the removal if it can */
if (driver_ctx->shutdown)
driver_ctx->shutdown(child_device);
if (driver_ctx->driver.shutdown)
driver_ctx->driver.shutdown(child_device);

return;
}
Expand Down

0 comments on commit 336957b

Please sign in to comment.