From: Mario Six Date: Mon, 28 Jan 2019 08:49:33 +0000 (+0100) Subject: ihs_mdio: Use new regmap interface X-Git-Tag: v2019.07-rc3~13^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e29dfce06cddc9cbc67f69c4a2fa9732caf73b26;p=platform%2Fkernel%2Fu-boot.git ihs_mdio: Use new regmap interface For the DM case, use the proper parameter for the regmap_init_mem call (which is the ofnode, not the udevice). Signed-off-by: Mario Six Reviewed-by: Simon Glass --- diff --git a/board/gdsys/common/ihs_mdio.c b/board/gdsys/common/ihs_mdio.c index b17e8db..f160a57 100644 --- a/board/gdsys/common/ihs_mdio.c +++ b/board/gdsys/common/ihs_mdio.c @@ -11,6 +11,7 @@ #include #else #include +#include #include #endif @@ -28,7 +29,7 @@ static inline u16 read_reg(struct udevice *fpga, uint base, uint addr) struct regmap *map; u8 *ptr; - regmap_init_mem(fpga, &map); + regmap_init_mem(dev_ofnode(fpga), &map); ptr = regmap_get_range(map, 0); return in_le16((u16 *)(ptr + base + addr)); @@ -40,7 +41,7 @@ static inline void write_reg(struct udevice *fpga, uint base, uint addr, struct regmap *map; u8 *ptr; - regmap_init_mem(fpga, &map); + regmap_init_mem(dev_ofnode(fpga), &map); ptr = regmap_get_range(map, 0); out_le16((u16 *)(ptr + base + addr), val);