mbox series

[net-next,0/6] drivers/net: constify static ops-variables

Message ID 20200826225608.90299-1-rikard.falkeborn@gmail.com (mailing list archive)
Headers show
Series drivers/net: constify static ops-variables | expand

Message

Rikard Falkeborn Aug. 26, 2020, 10:56 p.m. UTC
This series constifies a number of static ops variables, to allow the
compiler to put them in read-only memory. Compile-tested only.

Rikard Falkeborn (6):
  net: ethernet: qualcomm: constify qca_serdev_ops
  net: ethernet: ravb: constify bb_ops
  net: renesas: sh_eth: constify bb_ops
  net: phy: at803x: constify static regulator_ops
  net: phy: mscc: macsec: constify vsc8584_macsec_ops
  net: ath11k: constify ath11k_thermal_ops

 drivers/net/ethernet/qualcomm/qca_uart.c  | 2 +-
 drivers/net/ethernet/renesas/ravb_main.c  | 2 +-
 drivers/net/ethernet/renesas/sh_eth.c     | 2 +-
 drivers/net/phy/at803x.c                  | 4 ++--
 drivers/net/phy/mscc/mscc_macsec.c        | 2 +-
 drivers/net/wireless/ath/ath11k/thermal.c | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

Comments

David Miller Aug. 26, 2020, 11:21 p.m. UTC | #1
From: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Date: Thu, 27 Aug 2020 00:56:02 +0200

> This series constifies a number of static ops variables, to allow the
> compiler to put them in read-only memory. Compile-tested only.

Series applied, thank you.