Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac9dfe9c authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu Committed by Greg Kroah-Hartman
Browse files

usb: r8a66597-hcd: Change mistake of the outsw function



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

Signed-off-by: default avatarNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
CC: Paul Mundt <lethal@linux-sh.org>
Cc: stable <stable@kernel.org>  [.35 & .36]
Acked-by: default avatarYoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 96b9e832
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);