Commit c477ebd8 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds

sections: fix section conflicts in drivers/net

Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6cfe1093
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/can.h> #include <linux/can.h>
static __initdata const char banner[] = static __initconst const char banner[] =
KERN_INFO "slcan: serial line CAN interface driver\n"; KERN_INFO "slcan: serial line CAN interface driver\n";
MODULE_ALIAS_LDISC(N_SLCAN); MODULE_ALIAS_LDISC(N_SLCAN);
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <net/rtnetlink.h> #include <net/rtnetlink.h>
static __initdata const char banner[] = static __initconst const char banner[] =
KERN_INFO "vcan: Virtual CAN interface driver\n"; KERN_INFO "vcan: Virtual CAN interface driver\n";
MODULE_DESCRIPTION("virtual CAN interface"); MODULE_DESCRIPTION("virtual CAN interface");
......
...@@ -81,7 +81,7 @@ static void ne3210_block_output(struct net_device *dev, int count, const unsigne ...@@ -81,7 +81,7 @@ static void ne3210_block_output(struct net_device *dev, int count, const unsigne
static unsigned char irq_map[] __initdata = {15, 12, 11, 10, 9, 7, 5, 3}; static unsigned char irq_map[] __initdata = {15, 12, 11, 10, 9, 7, 5, 3};
static unsigned int shmem_map[] __initdata = {0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0}; static unsigned int shmem_map[] __initdata = {0xff0, 0xfe0, 0xfff0, 0xd8, 0xffe0, 0xffc0, 0xd0, 0x0};
static const char *ifmap[] __initdata = {"UTP", "?", "BNC", "AUI"}; static const char * const ifmap[] __initconst = {"UTP", "?", "BNC", "AUI"};
static int ifmap_val[] __initdata = { static int ifmap_val[] __initdata = {
IF_PORT_10BASET, IF_PORT_10BASET,
IF_PORT_UNKNOWN, IF_PORT_UNKNOWN,
......
...@@ -295,7 +295,7 @@ MODULE_DEVICE_TABLE(pci, starfire_pci_tbl); ...@@ -295,7 +295,7 @@ MODULE_DEVICE_TABLE(pci, starfire_pci_tbl);
static const struct chip_info { static const struct chip_info {
const char *name; const char *name;
int drv_flags; int drv_flags;
} netdrv_tbl[] __devinitdata = { } netdrv_tbl[] __devinitconst = {
{ "Adaptec Starfire 6915", CanHaveMII }, { "Adaptec Starfire 6915", CanHaveMII },
}; };
......
...@@ -702,7 +702,7 @@ struct atl1c_platform_patch { ...@@ -702,7 +702,7 @@ struct atl1c_platform_patch {
u32 patch_flag; u32 patch_flag;
#define ATL1C_LINK_PATCH 0x1 #define ATL1C_LINK_PATCH 0x1
}; };
static const struct atl1c_platform_patch plats[] __devinitdata = { static const struct atl1c_platform_patch plats[] __devinitconst = {
{0x2060, 0xC1, 0x1019, 0x8152, 0x1}, {0x2060, 0xC1, 0x1019, 0x8152, 0x1},
{0x2060, 0xC1, 0x1019, 0x2060, 0x1}, {0x2060, 0xC1, 0x1019, 0x2060, 0x1},
{0x2060, 0xC1, 0x1019, 0xE000, 0x1}, {0x2060, 0xC1, 0x1019, 0xE000, 0x1},
......
...@@ -2845,7 +2845,7 @@ static void atl2_force_ps(struct atl2_hw *hw) ...@@ -2845,7 +2845,7 @@ static void atl2_force_ps(struct atl2_hw *hw)
*/ */
#define ATL2_PARAM(X, desc) \ #define ATL2_PARAM(X, desc) \
static const int __devinitdata X[ATL2_MAX_NIC + 1] = ATL2_PARAM_INIT; \ static const int __devinitconst X[ATL2_MAX_NIC + 1] = ATL2_PARAM_INIT; \
MODULE_PARM(X, "1-" __MODULE_STRING(ATL2_MAX_NIC) "i"); \ MODULE_PARM(X, "1-" __MODULE_STRING(ATL2_MAX_NIC) "i"); \
MODULE_PARM_DESC(X, desc); MODULE_PARM_DESC(X, desc);
#else #else
......
...@@ -79,7 +79,7 @@ static struct eeprom_fixup eeprom_fixups[] __devinitdata = { ...@@ -79,7 +79,7 @@ static struct eeprom_fixup eeprom_fixups[] __devinitdata = {
{NULL}}; {NULL}};
static const char *block_name[] __devinitdata = { static const char *const block_name[] __devinitconst = {
"21140 non-MII", "21140 non-MII",
"21140 MII PHY", "21140 MII PHY",
"21142 Serial PHY", "21142 Serial PHY",
......
...@@ -236,7 +236,7 @@ struct pci_id_info { ...@@ -236,7 +236,7 @@ struct pci_id_info {
int drv_flags; /* Driver use, intended as capability flags. */ int drv_flags; /* Driver use, intended as capability flags. */
}; };
static const struct pci_id_info pci_id_tbl[] __devinitdata = { static const struct pci_id_info pci_id_tbl[] __devinitconst = {
{ /* Sometime a Level-One switch card. */ { /* Sometime a Level-One switch card. */
"Winbond W89c840", CanHaveMII | HasBrokenTx | FDXOnNoMII}, "Winbond W89c840", CanHaveMII | HasBrokenTx | FDXOnNoMII},
{ "Winbond W89c840", CanHaveMII | HasBrokenTx}, { "Winbond W89c840", CanHaveMII | HasBrokenTx},
......
...@@ -218,7 +218,7 @@ enum { ...@@ -218,7 +218,7 @@ enum {
struct pci_id_info { struct pci_id_info {
const char *name; const char *name;
}; };
static const struct pci_id_info pci_id_tbl[] __devinitdata = { static const struct pci_id_info pci_id_tbl[] __devinitconst = {
{"D-Link DFE-550TX FAST Ethernet Adapter"}, {"D-Link DFE-550TX FAST Ethernet Adapter"},
{"D-Link DFE-550FX 100Mbps Fiber-optics Adapter"}, {"D-Link DFE-550FX 100Mbps Fiber-optics Adapter"},
{"D-Link DFE-580TX 4 port Server Adapter"}, {"D-Link DFE-580TX 4 port Server Adapter"},
......
...@@ -150,7 +150,7 @@ struct chip_info { ...@@ -150,7 +150,7 @@ struct chip_info {
int flags; int flags;
}; };
static const struct chip_info skel_netdrv_tbl[] __devinitdata = { static const struct chip_info skel_netdrv_tbl[] __devinitconst = {
{ "100/10M Ethernet PCI Adapter", HAS_MII_XCVR }, { "100/10M Ethernet PCI Adapter", HAS_MII_XCVR },
{ "100/10M Ethernet PCI Adapter", HAS_CHIP_XCVR }, { "100/10M Ethernet PCI Adapter", HAS_CHIP_XCVR },
{ "1000/100/10M Ethernet PCI Adapter", HAS_MII_XCVR }, { "1000/100/10M Ethernet PCI Adapter", HAS_MII_XCVR },
......
...@@ -38,7 +38,7 @@ static inline void writeq(u64 val, void __iomem *addr) ...@@ -38,7 +38,7 @@ static inline void writeq(u64 val, void __iomem *addr)
} }
#endif #endif
static const struct crb_128M_2M_block_map static struct crb_128M_2M_block_map
crb_128M_2M_map[64] __cacheline_aligned_in_smp = { crb_128M_2M_map[64] __cacheline_aligned_in_smp = {
{{{0, 0, 0, 0} } }, /* 0: PCI */ {{{0, 0, 0, 0} } }, /* 0: PCI */
{{{1, 0x0100000, 0x0102000, 0x120000}, /* 1: PCIE */ {{{1, 0x0100000, 0x0102000, 0x120000}, /* 1: PCIE */
......
...@@ -228,7 +228,7 @@ typedef enum { ...@@ -228,7 +228,7 @@ typedef enum {
static const struct { static const struct {
const char *name; const char *name;
u32 hw_flags; u32 hw_flags;
} board_info[] __devinitdata = { } board_info[] __devinitconst = {
{ "RealTek RTL8139", RTL8139_CAPS }, { "RealTek RTL8139", RTL8139_CAPS },
{ "RealTek RTL8129", RTL8129_CAPS }, { "RealTek RTL8129", RTL8129_CAPS },
}; };
......
...@@ -1618,7 +1618,7 @@ static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev, ...@@ -1618,7 +1618,7 @@ static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,
static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev, static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev,
struct net_device *dev) struct net_device *dev)
{ {
static const u16 __devinitdata ids[] = { 0x0965, 0x0966, 0x0968 }; static const u16 __devinitconst ids[] = { 0x0965, 0x0966, 0x0968 };
struct sis190_private *tp = netdev_priv(dev); struct sis190_private *tp = netdev_priv(dev);
struct pci_dev *isa_bridge; struct pci_dev *isa_bridge;
u8 reg, tmp8; u8 reg, tmp8;
......
...@@ -811,9 +811,9 @@ static struct tty_ldisc_ops sp_ldisc = { ...@@ -811,9 +811,9 @@ static struct tty_ldisc_ops sp_ldisc = {
/* Initialize 6pack control device -- register 6pack line discipline */ /* Initialize 6pack control device -- register 6pack line discipline */
static const char msg_banner[] __initdata = KERN_INFO \ static const char msg_banner[] __initconst = KERN_INFO \
"AX.25: 6pack driver, " SIXPACK_VERSION "\n"; "AX.25: 6pack driver, " SIXPACK_VERSION "\n";
static const char msg_regfail[] __initdata = KERN_ERR \ static const char msg_regfail[] __initconst = KERN_ERR \
"6pack: can't register line discipline (err = %d)\n"; "6pack: can't register line discipline (err = %d)\n";
static int __init sixpack_init_driver(void) static int __init sixpack_init_driver(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment