net: phy: cavium: Improve __iomem mess
authorAndrew Lunn <andrew@lunn.ch>
Tue, 7 Jul 2020 01:49:38 +0000 (03:49 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 7 Jul 2020 19:47:11 +0000 (12:47 -0700)
commitc7b04d1030f505f2d883612ed31a6ddd70182705
treebdcfa226199a1b00f75300a4ba2458353446277a
parent82e7627fd4d8592be2acb908943fb943c440840d
net: phy: cavium: Improve __iomem mess

The MIPS low level register access functions seem to be missing
__iomem annotation. This causes lots of sparse warnings, when code
casts off the __iomem. Make the Cavium MDIO drivers cleaner by pushing
the casts lower down into the helpers, allow the drivers to work as
normal, with __iomem.

bus->register_base is now an void *, rather than a u64. So forming the
mii_bus->id string cannot use %llx any more. Use %px, so this kernel
address is still exposed to user space, as it was before.

v2: s/cases/causes/g

Cc: Sunil Goutham <sgoutham@marvell.com>
Cc: Robert Richter <rrichter@marvell.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio-cavium.h
drivers/net/phy/mdio-octeon.c
drivers/net/phy/mdio-thunder.c