Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 226962
b: refs/heads/master
c: 537baab
h: refs/heads/master
v: v3
  • Loading branch information
Tobias Klauser authored and Greg Kroah-Hartman committed Dec 10, 2010
1 parent 808b1b7 commit bdc597b
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: 16325f18eaa6066c4b913a5661fc8190ce564f7c
refs/heads/master: 537baabbdfebe7f9514f05b62eac91b4bfa0bdf2
4 changes: 2 additions & 2 deletions trunk/drivers/usb/gadget/f_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,
}

data = ffs_prepare_buffer(buf, len);
if (unlikely(IS_ERR(data))) {
if (IS_ERR(data)) {
ret = PTR_ERR(data);
break;
}
Expand Down Expand Up @@ -500,7 +500,7 @@ static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,
spin_unlock_irq(&ffs->ev.waitq.lock);

data = ffs_prepare_buffer(buf, len);
if (unlikely(IS_ERR(data))) {
if (IS_ERR(data)) {
ret = PTR_ERR(data);
break;
}
Expand Down

0 comments on commit bdc597b

Please sign in to comment.