summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/i825xx
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2022-01-14 14:13:16 +1100
committerDavid S. Miller <davem@davemloft.net>2022-01-14 11:22:57 +0000
commitea938248557a52e231a31f338eac4baee36a8626 (patch)
tree190559781089a1f38aad84f7091252a116a7cbe7 /drivers/net/ethernet/i825xx
parent6c8dc12cd925e5fa8c152633338b2b35c4c89258 (diff)
net: apple: bmac: Fix build since dev_addr constification
Since commit adeef3e32146 ("net: constify netdev->dev_addr") the bmac driver no longer builds with the following errors (pmac32_defconfig): linux/drivers/net/ethernet/apple/bmac.c: In function ‘bmac_probe’: linux/drivers/net/ethernet/apple/bmac.c:1287:20: error: assignment of read-only location ‘*(dev->dev_addr + (sizetype)j)’ 1287 | dev->dev_addr[j] = rev ? bitrev8(addr[j]): addr[j]; | ^ Fix it by making the modifications to a local macaddr variable and then passing that to eth_hw_addr_set(). We don't use the existing addr variable because the bitrev8() would mutate it, but it is already used unreversed later in the function. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/i825xx')
0 files changed, 0 insertions, 0 deletions