net: wan: sbni: Fix incorrect placement of __initdata
__initdata should be placed between the variable name and equal sign for the variable to be placed in the intended section. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
71acc0ddd4
commit
62a8370676
|
@ -176,7 +176,7 @@ static u32 mac[ SBNI_MAX_NUM_CARDS ] __initdata;
|
||||||
|
|
||||||
#ifndef MODULE
|
#ifndef MODULE
|
||||||
typedef u32 iarr[];
|
typedef u32 iarr[];
|
||||||
static iarr __initdata *dest[5] = { &io, &irq, &baud, &rxl, &mac };
|
static iarr *dest[5] __initdata = { &io, &irq, &baud, &rxl, &mac };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* A zero-terminated list of I/O addresses to be probed on ISA bus */
|
/* A zero-terminated list of I/O addresses to be probed on ISA bus */
|
||||||
|
|
Loading…
Reference in New Issue