]> git.ipfire.org Git - people/ms/u-boot.git/commit
smsc95xx: fix operation on 64-bit systems
authorStephen Warren <swarren@wwwdotorg.org>
Wed, 23 Mar 2016 04:28:16 +0000 (22:28 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 1 Apr 2016 21:17:40 +0000 (17:17 -0400)
commite320f0bc9b81076e4c59d281dff1428df5324809
tree98e3b03a35130da955ce4e07c47c5f1836112d17
parentf8bb69643550fccbf1df514deda53089da7940e3
smsc95xx: fix operation on 64-bit systems

smsc95xx_read_reg() should calculate sizeof(*data) not sizeof(data) since
data is a pointer, and the value pointed at is being transferred over USB,
not the value of the pointer. This fixes operation of the driver in 64-bit
builds, such as the Raspberry Pi 3.

Reported-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Marek Vasut <marex@denx.de>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
drivers/usb/eth/smsc95xx.c