Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249137
b: refs/heads/master
c: 1c8d0b7
h: refs/heads/master
i:
  249135: 1714fe6
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Apr 25, 2011
1 parent 5c34019 commit 3e6c282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 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: a31de969bf3f33456975f16d14519c1ff3803ae8
refs/heads/master: 1c8d0b7decd42e7cb5e5118f8d2f0bf3f39ba52a
14 changes: 2 additions & 12 deletions trunk/drivers/staging/hv/storvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@ static int storvsc_probe(struct device *device)
*/
static int storvsc_remove(struct device *device)
{
int ret;
struct hv_driver *drv =
drv_to_hv_drv(device->driver);
struct storvsc_driver_object *storvsc_drv_obj = drv->priv;
Expand All @@ -413,20 +412,11 @@ static int storvsc_remove(struct device *device)
struct host_device_context *host_device_ctx =
(struct host_device_context *)host->hostdata;


if (!storvsc_drv_obj->base.dev_rm)
return -1;

/*
* Call to the vsc driver to let it know that the device is being
* removed
*/
ret = storvsc_drv_obj->base.dev_rm(device_obj);
if (ret != 0) {
/* TODO: */
DPRINT_ERR(STORVSC, "unable to remove vsc device (ret %d)",
ret);
}
storvsc_drv_obj->base.dev_rm(device_obj);

if (host_device_ctx->request_pool) {
kmem_cache_destroy(host_device_ctx->request_pool);
Expand All @@ -438,7 +428,7 @@ static int storvsc_remove(struct device *device)

DPRINT_INFO(STORVSC, "releasing host adapter (%p)...", host);
scsi_host_put(host);
return ret;
return 0;
}

/*
Expand Down

0 comments on commit 3e6c282

Please sign in to comment.