Skip to content

Commit

Permalink
usb: r8a66597-hcd: Change mistake of the outsw function
Browse files Browse the repository at this point in the history
commit ac9dfe9 upstream.

Some functions changed by 1c98347.
However, There was a change mistake of the function (outsw).

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
CC: Paul Mundt <lethal@linux-sh.org>
Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Nobuhiro Iwamatsu authored and gregkh committed Nov 22, 2010
1 parent 973d988 commit 3952e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/host/r8a66597.h
Expand Up @@ -227,7 +227,7 @@ static inline void r8a66597_write_fifo(struct r8a66597 *r8a66597,
int odd = len & 0x0001;

len = len / 2;
ioread16_rep(fifoaddr, buf, len);
iowrite16_rep(fifoaddr, buf, len);
if (unlikely(odd)) {
buf = &buf[len];
iowrite8((unsigned char)*buf, fifoaddr);
Expand Down

0 comments on commit 3952e7d

Please sign in to comment.