Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363886
b: refs/heads/master
c: 2183b77
h: refs/heads/master
v: v3
  • Loading branch information
Kurt Kanzenbach authored and Greg Kroah-Hartman committed Apr 5, 2013
1 parent 6becb51 commit 4c2a701
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 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: 31398f6307d52fcb5aca6481fa4c84100aea97e3
refs/heads/master: 2183b77ece517fe4a17cae59d227d341b9d271c8
26 changes: 13 additions & 13 deletions trunk/drivers/staging/usbip/stub_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,22 +167,22 @@ static ssize_t store_match_busid(struct device_driver *dev, const char *buf,
strncpy(busid, buf + 4, BUSID_SIZE);

if (!strncmp(buf, "add ", 4)) {
if (add_match_busid(busid) < 0) {
if (add_match_busid(busid) < 0)
return -ENOMEM;
} else {
pr_debug("add busid %s\n", busid);
return count;
}
} else if (!strncmp(buf, "del ", 4)) {
if (del_match_busid(busid) < 0) {

pr_debug("add busid %s\n", busid);
return count;
}

if (!strncmp(buf, "del ", 4)) {
if (del_match_busid(busid) < 0)
return -ENODEV;
} else {
pr_debug("del busid %s\n", busid);
return count;
}
} else {
return -EINVAL;

pr_debug("del busid %s\n", busid);
return count;
}

return -EINVAL;
}
static DRIVER_ATTR(match_busid, S_IRUSR | S_IWUSR, show_match_busid,
store_match_busid);
Expand Down

0 comments on commit 4c2a701

Please sign in to comment.