Skip to content

Commit

Permalink
net: phy: adin: const-ify static data
Browse files Browse the repository at this point in the history
Some bits of static data should have been made const from the start.
This change adds the const qualifier where appropriate.

Reviewed-by: Andrew Lunn <[email protected]>
Signed-off-by: Alexandru Ardelean <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
commodo authored and davem330 committed Jan 17, 2020
1 parent 1f399fc commit aa63b94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/phy/adin.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ struct adin_clause45_mmd_map {
u16 adin_regnum;
};

static struct adin_clause45_mmd_map adin_clause45_mmd_map[] = {
static const struct adin_clause45_mmd_map adin_clause45_mmd_map[] = {
{ MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE, ADIN1300_EEE_CAP_REG },
{ MDIO_MMD_AN, MDIO_AN_EEE_LPABLE, ADIN1300_EEE_LPABLE_REG },
{ MDIO_MMD_AN, MDIO_AN_EEE_ADV, ADIN1300_EEE_ADV_REG },
Expand All @@ -159,7 +159,7 @@ struct adin_hw_stat {
u16 reg2;
};

static struct adin_hw_stat adin_hw_stats[] = {
static const struct adin_hw_stat adin_hw_stats[] = {
{ "total_frames_checked_count", 0x940A, 0x940B }, /* hi + lo */
{ "length_error_frames_count", 0x940C },
{ "alignment_error_frames_count", 0x940D },
Expand Down Expand Up @@ -456,7 +456,7 @@ static int adin_phy_config_intr(struct phy_device *phydev)
static int adin_cl45_to_adin_reg(struct phy_device *phydev, int devad,
u16 cl45_regnum)
{
struct adin_clause45_mmd_map *m;
const struct adin_clause45_mmd_map *m;
int i;

if (devad == MDIO_MMD_VEND1)
Expand Down Expand Up @@ -650,7 +650,7 @@ static void adin_get_strings(struct phy_device *phydev, u8 *data)
}

static int adin_read_mmd_stat_regs(struct phy_device *phydev,
struct adin_hw_stat *stat,
const struct adin_hw_stat *stat,
u32 *val)
{
int ret;
Expand All @@ -676,7 +676,7 @@ static int adin_read_mmd_stat_regs(struct phy_device *phydev,

static u64 adin_get_stat(struct phy_device *phydev, int i)
{
struct adin_hw_stat *stat = &adin_hw_stats[i];
const struct adin_hw_stat *stat = &adin_hw_stats[i];
struct adin_priv *priv = phydev->priv;
u32 val;
int ret;
Expand Down

0 comments on commit aa63b94

Please sign in to comment.