aboutsummaryrefslogtreecommitdiffstats
path: root/usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch
diff options
Diffstat (limited to 'usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch')
-rw-r--r--usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch b/usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch
new file mode 100644
index 00000000000000..400f2dfdd6006a
--- /dev/null
+++ b/usb/usb-r8a66597-hcd-change-mistake-of-the-outsw-function.patch
@@ -0,0 +1,34 @@
+From iwamatsu@nigauri.org Thu Oct 14 11:43:01 2010
+From: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
+To: linux-usb@vger.kernel.org
+Cc: gregkh@suse.de, lethal@linux-sh.org,
+ yoshihiro.shimoda.uh@renesas.com,
+ Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
+Subject: usb: r8a66597-hcd: Change mistake of the outsw function
+Date: Thu, 14 Oct 2010 14:52:54 +0900
+Message-Id: <1287035574-17972-1-git-send-email-nobuhiro.iwamatsu.yj@renesas.com>
+
+Some functions changed by 1c98347e613bf17ea2f18c9766ce0ab77f65a96d.
+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>
+Cc: stable <stable@kernel.org> [.35 & .36]
+Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ drivers/usb/host/r8a66597.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/usb/host/r8a66597.h
++++ b/drivers/usb/host/r8a66597.h
+@@ -227,7 +227,7 @@ static inline void r8a66597_write_fifo(s
+ 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);