projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb5da49
)
Staging: hv: netvsc: return negative error codes
author
Dan Carpenter
<error27@gmail.com>
Sat, 27 Aug 2011 11:06:07 +0000
(14:06 +0300)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Mon, 29 Aug 2011 18:15:23 +0000
(11:15 -0700)
There was a typo here and we changed the -ENOMEM into +ENOMEM. The
error codes aren't used, so this is just a cleanup.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/netvsc.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/staging/hv/netvsc.c
b/drivers/staging/hv/netvsc.c
index e4cc40a3bd8659150970dea5afd3e46dee5e0288..30d3139528521c74e5bb5666bd6f595925769f3d 100644
(file)
--- a/
drivers/staging/hv/netvsc.c
+++ b/
drivers/staging/hv/netvsc.c
@@
-125,7
+125,7
@@
static int netvsc_destroy_recv_buf(struct netvsc_device *net_device)
if (ret != 0) {
dev_err(&net_device->dev->device,
"unable to teardown receive buffer's gpadl");
- return
-
ret;
+ return ret;
}
net_device->recv_buf_gpadl_handle = 0;
}