]> git.ipfire.org Git - people/ms/u-boot.git/commit
net: dm9000x: re-add casts to I/O pointers to fix gcc warnings
authorMike Frysinger <vapier@gentoo.org>
Mon, 5 Jul 2010 06:29:21 +0000 (02:29 -0400)
committerBen Warren <biggerbadderben@gmail.com>
Mon, 12 Jul 2010 07:02:11 +0000 (00:02 -0700)
commit67bee2fb64efae2591057c2fd651c526070f4f9a
treedd4a67bb0788b6d11e803079a8687873896dcf16
parent26918b7994b5eb39aa83ccd2a760cd228c71c140
net: dm9000x: re-add casts to I/O pointers to fix gcc warnings

The DM9000 in/out helper functions were casting the register address when
it was accessing things directly (pre commit a45dde2293c816138e53c).  But
when it was changed to using the in/out helpers, those casts were dropped
because those functions don't take pointers.  Even more recently, those
functions were then changed to use the read/write helpers, but the casts
were not re-added.  This is necessary because the read/write helpers do
take pointers.  Otherwise we get a lot of warnings like:
dm9000x.c: In function 'dm9000_inblk_8bit':
dm9000x.c:172: warning: passing argument 1 of 'readb'
makes pointer from integer without a cast

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Tested-by: Thomas Weber <weber@corscience.de>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
drivers/net/dm9000x.c