Skip to content

Commit

Permalink
Merge branch 'const_of_device_id'
Browse files Browse the repository at this point in the history
Fabian Frederick says:

====================
drivers/net: constify of_device_id array

This small patchset adds const to of_device_id arrays in
drivers/net branch.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Mar 17, 2015
2 parents 617011e + 2c71ec9 commit 9cf7867
Show file tree
Hide file tree
Showing 40 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion drivers/net/can/cc770/cc770_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ static int cc770_platform_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id cc770_platform_table[] = {
static const struct of_device_id cc770_platform_table[] = {
{.compatible = "bosch,cc770"}, /* CC770 from Bosch */
{.compatible = "intc,82527"}, /* AN82527 from Intel CP */
{},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/can/grcan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ static int grcan_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id grcan_match[] = {
static const struct of_device_id grcan_match[] = {
{.name = "GAISLER_GRCAN"},
{.name = "01_03d"},
{.name = "GAISLER_GRHCAN"},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/can/mscan/mpc5xxx_can.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct mpc5xxx_can_data {
};

#ifdef CONFIG_PPC_MPC52xx
static struct of_device_id mpc52xx_cdm_ids[] = {
static const struct of_device_id mpc52xx_cdm_ids[] = {
{ .compatible = "fsl,mpc5200-cdm", },
{}
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/can/sja1000/sja1000_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static int sp_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id sp_of_table[] = {
static const struct of_device_id sp_of_table[] = {
{.compatible = "nxp,sja1000"},
{},
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/can/xilinx_can.c
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ static int xcan_remove(struct platform_device *pdev)
}

/* Match table for OF platform binding */
static struct of_device_id xcan_of_match[] = {
static const struct of_device_id xcan_of_match[] = {
{ .compatible = "xlnx,zynq-can-1.0", },
{ .compatible = "xlnx,axi-can-1.00.a", },
{ /* end of list */ },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/aeroflex/greth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,7 @@ static int greth_of_remove(struct platform_device *of_dev)
return 0;
}

static struct of_device_id greth_of_match[] = {
static const struct of_device_id greth_of_match[] = {
{
.name = "GAISLER_ETHMAC",
},
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/altera/altera_tse_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ MODULE_PARM_DESC(dma_tx_num, "Number of descriptors in the TX list");

#define TXQUEUESTOP_THRESHHOLD 2

static struct of_device_id altera_tse_ids[];
static const struct of_device_id altera_tse_ids[];

static inline u32 tse_tx_avail(struct altera_tse_private *priv)
{
Expand Down Expand Up @@ -1576,7 +1576,7 @@ static const struct altera_dmaops altera_dtype_msgdma = {
.start_rxdma = msgdma_start_rxdma,
};

static struct of_device_id altera_tse_ids[] = {
static const struct of_device_id altera_tse_ids[] = {
{ .compatible = "altr,tse-msgdma-1.0", .data = &altera_dtype_msgdma, },
{ .compatible = "altr,tse-1.0", .data = &altera_dtype_sgdma, },
{ .compatible = "ALTR,tse-1.0", .data = &altera_dtype_sgdma, },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/apm/xgene/xgene_enet_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ MODULE_DEVICE_TABLE(acpi, xgene_enet_acpi_match);
#endif

#ifdef CONFIG_OF
static struct of_device_id xgene_enet_of_match[] = {
static const struct of_device_id xgene_enet_of_match[] = {
{.compatible = "apm,xgene-enet",},
{.compatible = "apm,xgene1-sgenet",},
{.compatible = "apm,xgene1-xgenet",},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/apple/bmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ static int bmac_remove(struct macio_dev *mdev)
return 0;
}

static struct of_device_id bmac_match[] =
static const struct of_device_id bmac_match[] =
{
{
.name = "bmac",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/apple/mace.c
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ static irqreturn_t mace_rxdma_intr(int irq, void *dev_id)
return IRQ_HANDLED;
}

static struct of_device_id mace_match[] =
static const struct of_device_id mace_match[] =
{
{
.name = "mace",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ethoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ static int ethoc_resume(struct platform_device *pdev)
# define ethoc_resume NULL
#endif

static struct of_device_id ethoc_match[] = {
static const struct of_device_id ethoc_match[] = {
{ .compatible = "opencores,ethoc", },
{},
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/fec_mpc52xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ static int mpc52xx_fec_of_resume(struct platform_device *op)
}
#endif

static struct of_device_id mpc52xx_fec_match[] = {
static const struct of_device_id mpc52xx_fec_match[] = {
{ .compatible = "fsl,mpc5200b-fec", },
{ .compatible = "fsl,mpc5200-fec", },
{ .compatible = "mpc5200-fec", },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/fec_mpc52xx_phy.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static int mpc52xx_fec_mdio_remove(struct platform_device *of)
return 0;
}

static struct of_device_id mpc52xx_fec_mdio_match[] = {
static const struct of_device_id mpc52xx_fec_mdio_match[] = {
{ .compatible = "fsl,mpc5200b-mdio", },
{ .compatible = "fsl,mpc5200-mdio", },
{ .compatible = "mpc5200b-fec-phy", },
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/freescale/fs_enet/fs_enet-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ static const struct net_device_ops fs_enet_netdev_ops = {
#endif
};

static struct of_device_id fs_enet_match[];
static const struct of_device_id fs_enet_match[];
static int fs_enet_probe(struct platform_device *ofdev)
{
const struct of_device_id *match;
Expand Down Expand Up @@ -1082,7 +1082,7 @@ static int fs_enet_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id fs_enet_match[] = {
static const struct of_device_id fs_enet_match[] = {
#ifdef CONFIG_FS_ENET_HAS_SCC
{
.compatible = "fsl,cpm1-scc-enet",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/fs_enet/mii-bitbang.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static int fs_enet_mdio_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id fs_enet_mdio_bb_match[] = {
static const struct of_device_id fs_enet_mdio_bb_match[] = {
{
.compatible = "fsl,cpm2-mdio-bitbang",
},
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/freescale/fs_enet/mii-fec.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static int fs_enet_fec_mii_write(struct mii_bus *bus, int phy_id, int location,

}

static struct of_device_id fs_enet_mdio_fec_match[];
static const struct of_device_id fs_enet_mdio_fec_match[];
static int fs_enet_mdio_probe(struct platform_device *ofdev)
{
const struct of_device_id *match;
Expand Down Expand Up @@ -208,7 +208,7 @@ static int fs_enet_mdio_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id fs_enet_mdio_fec_match[] = {
static const struct of_device_id fs_enet_mdio_fec_match[] = {
{
.compatible = "fsl,pq1-fec-mdio",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/fsl_pq_mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ static void ucc_configure(phys_addr_t start, phys_addr_t end)

#endif

static struct of_device_id fsl_pq_mdio_match[] = {
static const struct of_device_id fsl_pq_mdio_match[] = {
#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE)
{
.compatible = "fsl,gianfar-tbi",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/gianfar.c
Original file line number Diff line number Diff line change
Expand Up @@ -3594,7 +3594,7 @@ static noinline void gfar_update_link_state(struct gfar_private *priv)
phy_print_status(phydev);
}

static struct of_device_id gfar_match[] =
static const struct of_device_id gfar_match[] =
{
{
.type = "network",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/gianfar_ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ static int gianfar_ptp_remove(struct platform_device *dev)
return 0;
}

static struct of_device_id match_table[] = {
static const struct of_device_id match_table[] = {
{ .compatible = "fsl,etsec-ptp" },
{},
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/ucc_geth.c
Original file line number Diff line number Diff line change
Expand Up @@ -3930,7 +3930,7 @@ static int ucc_geth_remove(struct platform_device* ofdev)
return 0;
}

static struct of_device_id ucc_geth_match[] = {
static const struct of_device_id ucc_geth_match[] = {
{
.type = "network",
.compatible = "ucc_geth",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/freescale/xgmac_mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ static int xgmac_mdio_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id xgmac_mdio_match[] = {
static const struct of_device_id xgmac_mdio_match[] = {
{
.compatible = "fsl,fman-xmdio",
},
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/ibm/ehea/ehea_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static int ehea_probe_adapter(struct platform_device *dev);

static int ehea_remove(struct platform_device *dev);

static struct of_device_id ehea_module_device_table[] = {
static const struct of_device_id ehea_module_device_table[] = {
{
.name = "lhea",
.compatible = "IBM,lhea",
Expand All @@ -116,7 +116,7 @@ static struct of_device_id ehea_module_device_table[] = {
};
MODULE_DEVICE_TABLE(of, ehea_module_device_table);

static struct of_device_id ehea_device_table[] = {
static const struct of_device_id ehea_device_table[] = {
{
.name = "lhea",
.compatible = "IBM,lhea",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ibm/emac/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@ static int emac_remove(struct platform_device *ofdev)
}

/* XXX Features in here should be replaced by properties... */
static struct of_device_id emac_match[] =
static const struct of_device_id emac_match[] =
{
{
.type = "network",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ibm/emac/mal.c
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ static int mal_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id mal_platform_match[] =
static const struct of_device_id mal_platform_match[] =
{
{
.compatible = "ibm,mcmal",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ibm/emac/rgmii.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ static int rgmii_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id rgmii_match[] =
static const struct of_device_id rgmii_match[] =
{
{
.compatible = "ibm,rgmii",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ibm/emac/tah.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static int tah_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id tah_match[] =
static const struct of_device_id tah_match[] =
{
{
.compatible = "ibm,tah",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ibm/emac/zmii.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ static int zmii_remove(struct platform_device *ofdev)
return 0;
}

static struct of_device_id zmii_match[] =
static const struct of_device_id zmii_match[] =
{
{
.compatible = "ibm,zmii",
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/octeon/octeon_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ static int octeon_mgmt_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id octeon_mgmt_match[] = {
static const struct of_device_id octeon_mgmt_match[] = {
{
.compatible = "cavium,octeon-5750-mix",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/ti/netcp_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2127,7 +2127,7 @@ static int netcp_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id of_match[] = {
static const struct of_device_id of_match[] = {
{ .compatible = "ti,netcp-1.0", },
{},
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/via/via-rhine.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ MODULE_DEVICE_TABLE(pci, rhine_pci_tbl);
* The .data field is currently only used to store quirks
*/
static u32 vt8500_quirks = rqWOL | rqForceReset | rq6patterns;
static struct of_device_id rhine_of_tbl[] = {
static const struct of_device_id rhine_of_tbl[] = {
{ .compatible = "via,vt8500-rhine", .data = &vt8500_quirks },
{ } /* terminate list */
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/via/via-velocity.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ MODULE_DEVICE_TABLE(pci, velocity_pci_id_table);
* Describe the OF device identifiers that we support in this
* device driver. Used for devicetree nodes.
*/
static struct of_device_id velocity_of_ids[] = {
static const struct of_device_id velocity_of_ids[] = {
{ .compatible = "via,velocity-vt6110", .data = &chip_info_table[0] },
{ /* Sentinel */ },
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/xilinx/ll_temac_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ static int temac_of_remove(struct platform_device *op)
return 0;
}

static struct of_device_id temac_of_match[] = {
static const struct of_device_id temac_of_match[] = {
{ .compatible = "xlnx,xps-ll-temac-1.01.b", },
{ .compatible = "xlnx,xps-ll-temac-2.00.a", },
{ .compatible = "xlnx,xps-ll-temac-2.02.a", },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/xilinx/xilinx_axienet_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#define AXIENET_REGS_N 32

/* Match table for of_platform binding */
static struct of_device_id axienet_of_match[] = {
static const struct of_device_id axienet_of_match[] = {
{ .compatible = "xlnx,axi-ethernet-1.00.a", },
{ .compatible = "xlnx,axi-ethernet-1.01.a", },
{ .compatible = "xlnx,axi-ethernet-2.01.a", },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/xilinx/xilinx_emaclite.c
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ static struct net_device_ops xemaclite_netdev_ops = {
};

/* Match table for OF platform binding */
static struct of_device_id xemaclite_of_match[] = {
static const struct of_device_id xemaclite_of_match[] = {
{ .compatible = "xlnx,opb-ethernetlite-1.01.a", },
{ .compatible = "xlnx,opb-ethernetlite-1.01.b", },
{ .compatible = "xlnx,xps-ethernetlite-1.00.a", },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio-bcm-unimac.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static int unimac_mdio_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id unimac_mdio_ids[] = {
static const struct of_device_id unimac_mdio_ids[] = {
{ .compatible = "brcm,genet-mdio-v4", },
{ .compatible = "brcm,genet-mdio-v3", },
{ .compatible = "brcm,genet-mdio-v2", },
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static int mdio_gpio_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id mdio_gpio_of_match[] = {
static const struct of_device_id mdio_gpio_of_match[] = {
{ .compatible = "virtual,mdio-gpio", },
{ /* sentinel */ }
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio-mux-gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static int mdio_mux_gpio_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id mdio_mux_gpio_match[] = {
static const struct of_device_id mdio_mux_gpio_match[] = {
{
.compatible = "mdio-mux-gpio",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio-mux-mmioreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ static int mdio_mux_mmioreg_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id mdio_mux_mmioreg_match[] = {
static const struct of_device_id mdio_mux_mmioreg_match[] = {
{
.compatible = "mdio-mux-mmioreg",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/phy/mdio-octeon.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ static int octeon_mdiobus_remove(struct platform_device *pdev)
return 0;
}

static struct of_device_id octeon_mdiobus_match[] = {
static const struct of_device_id octeon_mdiobus_match[] = {
{
.compatible = "cavium,octeon-3860-mdio",
},
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/orinoco/airport.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
MODULE_DESCRIPTION("Driver for the Apple Airport wireless card.");
MODULE_LICENSE("Dual MPL/GPL");

static struct of_device_id airport_match[] = {
static const struct of_device_id airport_match[] = {
{
.name = "radio",
},
Expand Down

0 comments on commit 9cf7867

Please sign in to comment.