Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dace1b54 authored by Ley Foon Tan's avatar Ley Foon Tan Committed by David S. Miller
Browse files

net: stmmac: fix warning from Sparse for socfpga



Warning:
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c:122:41:
sparse: cast removes address space of expression
drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c:122:38:
sparse: incorrect type in assignment (different address spaces)

Signed-off-by: default avatarLey Foon Tan <lftan@altera.com>
Acked-by: default avatarGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 030824e0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -119,8 +119,7 @@ static int socfpga_dwmac_parse_data(struct socfpga_dwmac *dwmac, struct device *
			return -EINVAL;
		}

		dwmac->splitter_base = (void *)devm_ioremap_resource(dev,
			&res_splitter);
		dwmac->splitter_base = devm_ioremap_resource(dev, &res_splitter);
		if (!dwmac->splitter_base) {
			dev_info(dev, "Failed to mapping emac splitter\n");
			return -EINVAL;