lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 01 Mar 2007 01:22:23 +0900 (JST) From: Atsushi Nemoto <anemo@....ocn.ne.jp> To: linux-mips@...ux-mips.org Cc: ralf@...ux-mips.org, sshtylyov@...mvista.com, netdev@...r.kernel.org Subject: [PATCH] Fix broken RBTX4927 support in ne.c There are some ifdefs for RBTX4927, but need some more bits. Signed-off-by: Atsushi Nemoto <anemo@....ocn.ne.jp> --- diff --git a/drivers/net/ne.c b/drivers/net/ne.c index a5c4199..02cc78b 100644 --- a/drivers/net/ne.c +++ b/drivers/net/ne.c @@ -55,8 +55,10 @@ static const char version2[] = #include <asm/system.h> #include <asm/io.h> -#if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938) +#if defined(CONFIG_TOSHIBA_RBTX4938) #include <asm/tx4938/rbtx4938.h> +#elif defined(CONFIG_TOSHIBA_RBTX4927) +#include <asm/tx4927/toshiba_rbtx4927.h> #endif #include "8390.h" @@ -229,6 +231,9 @@ struct net_device * __init ne_probe(int unit) #ifdef CONFIG_TOSHIBA_RBTX4938 dev->base_addr = RBTX4938_RTL_8019_BASE; dev->irq = RBTX4938_RTL_8019_IRQ; +#elif defined(CONFIG_TOSHIBA_RBTX4927) + dev->base_addr = RBTX4927_RTL_8019_BASE; + dev->irq = RBTX4927_RTL_8019_IRQ; #endif err = do_ne_probe(dev); if (err) - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists