Commit 0c8a32df authored by Mike Frysinger's avatar Mike Frysinger Committed by Greg Kroah-Hartman

USB: isp1362: fix inw warning on Blackfin systems

The Blackfin code is incorrectly casting the argument to inw() to a pointer.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b41709f1
...@@ -65,7 +65,7 @@ static inline void delayed_insw(unsigned int addr, void *buf, int len) ...@@ -65,7 +65,7 @@ static inline void delayed_insw(unsigned int addr, void *buf, int len)
unsigned short *bp = (unsigned short *)buf; unsigned short *bp = (unsigned short *)buf;
while (len--) { while (len--) {
DUMMY_DELAY_ACCESS; DUMMY_DELAY_ACCESS;
*bp++ = inw((void *)addr); *bp++ = inw(addr);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment