Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267966
b: refs/heads/master
c: bc49b92
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Aug 25, 2011
1 parent 8a0aa7f commit f8ca6b8
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: 58ef3977ce8e0edba374dd7645e59cf5afdc6447
refs/heads/master: bc49b92671632d09a0fa6651c4fdf2b9ab0632ee
4 changes: 2 additions & 2 deletions trunk/drivers/staging/hv/rndis_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ static int rndis_filter_init_device(struct rndis_device *dev)
request = get_rndis_request(dev, REMOTE_NDIS_INITIALIZE_MSG,
RNDIS_MESSAGE_SIZE(struct rndis_initialize_request));
if (!request) {
ret = -1;
ret = -ENOMEM;
goto Cleanup;
}

Expand Down Expand Up @@ -596,7 +596,7 @@ static int rndis_filter_init_device(struct rndis_device *dev)
ret = 0;
} else {
dev->state = RNDIS_DEV_UNINITIALIZED;
ret = -1;
ret = -EINVAL;
}

Cleanup:
Expand Down

0 comments on commit f8ca6b8

Please sign in to comment.