Skip to content

Commit

Permalink
net: fix section mismatches
Browse files Browse the repository at this point in the history
Fix build warnings like the following:

WARNING: drivers/net/built-in.o(.data+0x12434): Section mismatch in reference from the variable madgemc_driver to the variable .init.data:madgemc_adapter_ids

And add some consts to EISA device ID tables along the way.

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Michał Mirosław authored and David S. Miller committed Apr 19, 2011
1 parent 2b7b431 commit e5cb966
Show file tree
Hide file tree
Showing 10 changed files with 72 additions and 68 deletions.
14 changes: 7 additions & 7 deletions drivers/net/3c509.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static int max_interrupt_work = 10;
static int nopnp;
#endif

static int __devinit el3_common_init(struct net_device *dev);
static int el3_common_init(struct net_device *dev);
static void el3_common_remove(struct net_device *dev);
static ushort id_read_eeprom(int index);
static ushort read_eeprom(int ioaddr, int index);
Expand Down Expand Up @@ -395,7 +395,7 @@ static struct isa_driver el3_isa_driver = {
static int isa_registered;

#ifdef CONFIG_PNP
static struct pnp_device_id el3_pnp_ids[] = {
static const struct pnp_device_id el3_pnp_ids[] __devinitconst = {
{ .id = "TCM5090" }, /* 3Com Etherlink III (TP) */
{ .id = "TCM5091" }, /* 3Com Etherlink III */
{ .id = "TCM5094" }, /* 3Com Etherlink III (combo) */
Expand Down Expand Up @@ -478,7 +478,7 @@ static int pnp_registered;
#endif /* CONFIG_PNP */

#ifdef CONFIG_EISA
static struct eisa_device_id el3_eisa_ids[] = {
static const struct eisa_device_id el3_eisa_ids[] __devinitconst = {
{ "TCM5090" },
{ "TCM5091" },
{ "TCM5092" },
Expand Down Expand Up @@ -508,7 +508,7 @@ static int eisa_registered;
#ifdef CONFIG_MCA
static int el3_mca_probe(struct device *dev);

static short el3_mca_adapter_ids[] __initdata = {
static const short el3_mca_adapter_ids[] __devinitconst = {
0x627c,
0x627d,
0x62db,
Expand All @@ -517,7 +517,7 @@ static short el3_mca_adapter_ids[] __initdata = {
0x0000
};

static char *el3_mca_adapter_names[] __initdata = {
static const char *const el3_mca_adapter_names[] __devinitconst = {
"3Com 3c529 EtherLink III (10base2)",
"3Com 3c529 EtherLink III (10baseT)",
"3Com 3c529 EtherLink III (test mode)",
Expand Down Expand Up @@ -601,7 +601,7 @@ static void el3_common_remove (struct net_device *dev)
}

#ifdef CONFIG_MCA
static int __init el3_mca_probe(struct device *device)
static int __devinit el3_mca_probe(struct device *device)
{
/* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch,
* heavily modified by Chris Beauregard
Expand Down Expand Up @@ -671,7 +671,7 @@ static int __init el3_mca_probe(struct device *device)
#endif /* CONFIG_MCA */

#ifdef CONFIG_EISA
static int __init el3_eisa_probe (struct device *device)
static int __devinit el3_eisa_probe (struct device *device)
{
short i;
int ioaddr, irq, if_port;
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/3c59x.c
Original file line number Diff line number Diff line change
Expand Up @@ -901,14 +901,14 @@ static const struct dev_pm_ops vortex_pm_ops = {
#endif /* !CONFIG_PM */

#ifdef CONFIG_EISA
static struct eisa_device_id vortex_eisa_ids[] = {
static const struct eisa_device_id vortex_eisa_ids[] __devinitconst = {
{ "TCM5920", CH_3C592 },
{ "TCM5970", CH_3C597 },
{ "" }
};
MODULE_DEVICE_TABLE(eisa, vortex_eisa_ids);

static int __init vortex_eisa_probe(struct device *device)
static int __devinit vortex_eisa_probe(struct device *device)
{
void __iomem *ioaddr;
struct eisa_device *edev;
Expand Down
35 changes: 18 additions & 17 deletions drivers/net/depca.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,18 +331,18 @@ static struct {
"DE422",\
""}

static char* __initdata depca_signature[] = DEPCA_SIGNATURE;
static const char* const depca_signature[] __devinitconst = DEPCA_SIGNATURE;

enum depca_type {
DEPCA, de100, de101, de200, de201, de202, de210, de212, de422, unknown
};

static char depca_string[] = "depca";
static const char depca_string[] = "depca";

static int depca_device_remove (struct device *device);

#ifdef CONFIG_EISA
static struct eisa_device_id depca_eisa_ids[] = {
static const struct eisa_device_id depca_eisa_ids[] __devinitconst = {
{ "DEC4220", de422 },
{ "" }
};
Expand All @@ -367,19 +367,19 @@ static struct eisa_driver depca_eisa_driver = {
#define DE210_ID 0x628d
#define DE212_ID 0x6def

static short depca_mca_adapter_ids[] = {
static const short depca_mca_adapter_ids[] __devinitconst = {
DE210_ID,
DE212_ID,
0x0000
};

static char *depca_mca_adapter_name[] = {
static const char *depca_mca_adapter_name[] = {
"DEC EtherWORKS MC Adapter (DE210)",
"DEC EtherWORKS MC Adapter (DE212)",
NULL
};

static enum depca_type depca_mca_adapter_type[] = {
static const enum depca_type depca_mca_adapter_type[] = {
de210,
de212,
0
Expand Down Expand Up @@ -541,10 +541,9 @@ static void SetMulticastFilter(struct net_device *dev);
static int load_packet(struct net_device *dev, struct sk_buff *skb);
static void depca_dbg_open(struct net_device *dev);

static u_char de1xx_irq[] __initdata = { 2, 3, 4, 5, 7, 9, 0 };
static u_char de2xx_irq[] __initdata = { 5, 9, 10, 11, 15, 0 };
static u_char de422_irq[] __initdata = { 5, 9, 10, 11, 0 };
static u_char *depca_irq;
static const u_char de1xx_irq[] __devinitconst = { 2, 3, 4, 5, 7, 9, 0 };
static const u_char de2xx_irq[] __devinitconst = { 5, 9, 10, 11, 15, 0 };
static const u_char de422_irq[] __devinitconst = { 5, 9, 10, 11, 0 };

static int irq;
static int io;
Expand Down Expand Up @@ -580,7 +579,7 @@ static const struct net_device_ops depca_netdev_ops = {
.ndo_validate_addr = eth_validate_addr,
};

static int __init depca_hw_init (struct net_device *dev, struct device *device)
static int __devinit depca_hw_init (struct net_device *dev, struct device *device)
{
struct depca_private *lp;
int i, j, offset, netRAM, mem_len, status = 0;
Expand Down Expand Up @@ -748,6 +747,7 @@ static int __init depca_hw_init (struct net_device *dev, struct device *device)
if (dev->irq < 2) {
unsigned char irqnum;
unsigned long irq_mask, delay;
const u_char *depca_irq;

irq_mask = probe_irq_on();

Expand All @@ -770,6 +770,7 @@ static int __init depca_hw_init (struct net_device *dev, struct device *device)
break;

default:
depca_irq = NULL;
break; /* Not reached */
}

Expand Down Expand Up @@ -1302,7 +1303,7 @@ static void SetMulticastFilter(struct net_device *dev)
}
}

static int __init depca_common_init (u_long ioaddr, struct net_device **devp)
static int __devinit depca_common_init (u_long ioaddr, struct net_device **devp)
{
int status = 0;

Expand Down Expand Up @@ -1333,7 +1334,7 @@ static int __init depca_common_init (u_long ioaddr, struct net_device **devp)
/*
** Microchannel bus I/O device probe
*/
static int __init depca_mca_probe(struct device *device)
static int __devinit depca_mca_probe(struct device *device)
{
unsigned char pos[2];
unsigned char where;
Expand Down Expand Up @@ -1457,7 +1458,7 @@ static int __init depca_mca_probe(struct device *device)
** ISA bus I/O device probe
*/

static void __init depca_platform_probe (void)
static void __devinit depca_platform_probe (void)
{
int i;
struct platform_device *pldev;
Expand Down Expand Up @@ -1497,7 +1498,7 @@ static void __init depca_platform_probe (void)
}
}

static enum depca_type __init depca_shmem_probe (ulong *mem_start)
static enum depca_type __devinit depca_shmem_probe (ulong *mem_start)
{
u_long mem_base[] = DEPCA_RAM_BASE_ADDRESSES;
enum depca_type adapter = unknown;
Expand Down Expand Up @@ -1558,7 +1559,7 @@ static int __devinit depca_isa_probe (struct platform_device *device)
*/

#ifdef CONFIG_EISA
static int __init depca_eisa_probe (struct device *device)
static int __devinit depca_eisa_probe (struct device *device)
{
enum depca_type adapter = unknown;
struct eisa_device *edev;
Expand Down Expand Up @@ -1629,7 +1630,7 @@ static int __devexit depca_device_remove (struct device *device)
** and Boot (readb) ROM. This will also give us a clue to the network RAM
** base address.
*/
static int __init DepcaSignature(char *name, u_long base_addr)
static int __devinit DepcaSignature(char *name, u_long base_addr)
{
u_int i, j, k;
void __iomem *ptr;
Expand Down
12 changes: 6 additions & 6 deletions drivers/net/hp100.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,14 @@ struct hp100_private {
* variables
*/
#ifdef CONFIG_ISA
static const char *hp100_isa_tbl[] = {
static const char *const hp100_isa_tbl[] __devinitconst = {
"HWPF150", /* HP J2573 rev A */
"HWP1950", /* HP J2573 */
};
#endif

#ifdef CONFIG_EISA
static struct eisa_device_id hp100_eisa_tbl[] = {
static const struct eisa_device_id hp100_eisa_tbl[] __devinitconst = {
{ "HWPF180" }, /* HP J2577 rev A */
{ "HWP1920" }, /* HP 27248B */
{ "HWP1940" }, /* HP J2577 */
Expand Down Expand Up @@ -336,7 +336,7 @@ static __devinit const char *hp100_read_id(int ioaddr)
}

#ifdef CONFIG_ISA
static __init int hp100_isa_probe1(struct net_device *dev, int ioaddr)
static __devinit int hp100_isa_probe1(struct net_device *dev, int ioaddr)
{
const char *sig;
int i;
Expand Down Expand Up @@ -372,7 +372,7 @@ static __init int hp100_isa_probe1(struct net_device *dev, int ioaddr)
* EISA and PCI are handled by device infrastructure.
*/

static int __init hp100_isa_probe(struct net_device *dev, int addr)
static int __devinit hp100_isa_probe(struct net_device *dev, int addr)
{
int err = -ENODEV;

Expand All @@ -396,7 +396,7 @@ static int __init hp100_isa_probe(struct net_device *dev, int addr)
#endif /* CONFIG_ISA */

#if !defined(MODULE) && defined(CONFIG_ISA)
struct net_device * __init hp100_probe(int unit)
struct net_device * __devinit hp100_probe(int unit)
{
struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private));
int err;
Expand Down Expand Up @@ -2843,7 +2843,7 @@ static void cleanup_dev(struct net_device *d)
}

#ifdef CONFIG_EISA
static int __init hp100_eisa_probe (struct device *gendev)
static int __devinit hp100_eisa_probe (struct device *gendev)
{
struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private));
struct eisa_device *edev = to_eisa_device(gendev);
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ibmlana.c
Original file line number Diff line number Diff line change
Expand Up @@ -895,12 +895,12 @@ static int ibmlana_irq;
static int ibmlana_io;
static int startslot; /* counts through slots when probing multiple devices */

static short ibmlana_adapter_ids[] __initdata = {
static const short ibmlana_adapter_ids[] __devinitconst = {
IBM_LANA_ID,
0x0000
};

static char *ibmlana_adapter_names[] __devinitdata = {
static const char *const ibmlana_adapter_names[] __devinitconst = {
"IBM LAN Adapter/A",
NULL
};
Expand Down
Loading

0 comments on commit e5cb966

Please sign in to comment.