From: Nobuhiro Iwamatsu Date: Thu, 14 Oct 2010 05:52:54 +0000 (+0900) Subject: usb: r8a66597-hcd: Change mistake of the outsw function X-Git-Tag: v2.6.37-rc1~154^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ac9dfe9cdda4eb42ecaa9f13b0fee518e0b6518e;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git usb: r8a66597-hcd: Change mistake of the outsw function Some functions changed by 1c98347e613bf17ea2f18c9766ce0ab77f65a96d. However, There was a change mistake of the function (outsw). Signed-off-by: Nobuhiro Iwamatsu CC: Paul Mundt Cc: stable [.35 & .36] Acked-by: Yoshihiro Shimoda Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/r8a66597.h b/drivers/usb/host/r8a66597.h index 95d0f5a..25563e9 100644 --- a/drivers/usb/host/r8a66597.h +++ b/drivers/usb/host/r8a66597.h @@ -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);