Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 207957
b: refs/heads/master
c: 6e1c3b4
h: refs/heads/master
i:
  207955: 85845bf
v: v3
  • Loading branch information
Igor Grinberg authored and Greg Kroah-Hartman committed Aug 10, 2010
1 parent 399d99a commit 7288d91
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: cd62aced31dee9a9a8e63da7bd564911891b3665
refs/heads/master: 6e1c3b467ffd9d6eb725dda544f6fd10e471ea71
4 changes: 2 additions & 2 deletions trunk/include/linux/usb/otg.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ static inline int otg_io_read(struct otg_transceiver *otg, u32 reg)
return -EINVAL;
}

static inline int otg_io_write(struct otg_transceiver *otg, u32 reg, u32 val)
static inline int otg_io_write(struct otg_transceiver *otg, u32 val, u32 reg)
{
if (otg->io_ops && otg->io_ops->write)
return otg->io_ops->write(otg, reg, val);
return otg->io_ops->write(otg, val, reg);

return -EINVAL;
}
Expand Down

0 comments on commit 7288d91

Please sign in to comment.