From: Francois Romieu <romieu@fr.zoreil.com>

Do not mark __devinitdata a data which is required when network device
opens.



 25-akpm/drivers/net/r8169.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/net/r8169.c~r8169-oops-fix drivers/net/r8169.c
--- 25/drivers/net/r8169.c~r8169-oops-fix	Tue Jan  6 15:42:58 2004
+++ 25-akpm/drivers/net/r8169.c	Tue Jan  6 15:42:58 2004
@@ -129,7 +129,7 @@ const static struct {
 	const char *name;
 	u8 mac_version;
 	u32 RxConfigMask;	/* Clears the bits supported by this chip */
-} rtl_chip_info[] __devinitdata = {
+} rtl_chip_info[] = {
 	_R("RTL8169",		RTL_GIGA_MAC_VER_B, 0xff7e1880),
 	_R("RTL8169s/8110s",	RTL_GIGA_MAC_VER_D, 0xff7e1880),
 	_R("RTL8169s/8110s",	RTL_GIGA_MAC_VER_E, 0xff7e1880)

_