diff options
| author | Rikard Falkeborn <[email protected]> | 2020-08-27 00:56:05 +0200 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-08-26 16:21:17 -0700 |
| commit | b968a44f7b9470c9df0d1fe5290710969108bfbf (patch) | |
| tree | 675cb99f3b8b00aba09cb4954d0cd37310d2ecf5 | |
| parent | 3ab4519aecb424df8abb1beca8e27d71ac242ab6 (diff) | |
net: renesas: sh_eth: constify bb_ops
The only usage of bb_ops is to assign its address to the ops field in
the mdiobb_ctrl struct, which is a const pointer. Make it const to allow
the compiler to put it in read-only memory.
Signed-off-by: Rikard Falkeborn <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/renesas/sh_eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/renesas/sh_eth.c b/drivers/net/ethernet/renesas/sh_eth.c index f45331ed90b0..586642c33d2b 100644 --- a/drivers/net/ethernet/renesas/sh_eth.c +++ b/drivers/net/ethernet/renesas/sh_eth.c @@ -1202,7 +1202,7 @@ static void sh_mdc_ctrl(struct mdiobb_ctrl *ctrl, int bit) } /* mdio bus control struct */ -static struct mdiobb_ops bb_ops = { +static const struct mdiobb_ops bb_ops = { .owner = THIS_MODULE, .set_mdc = sh_mdc_ctrl, .set_mdio_dir = sh_mmd_ctrl, |