Messages in this thread Patch in this message |  | | Date | Fri, 22 Jul 2005 23:42:23 +0200 | From | Adrian Bunk <> | Subject | [2.6 patch] drivers/net/ne.c: fix warning with -Wundef |
| |
This patch fixes the following warning with -Wundef:
<-- snip -->
... CC drivers/net/ne.o drivers/net/ne.c:134:7: warning: "CONFIG_PLAT_OAKS32R" is not defined ...
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.13-rc3-mm1-full/drivers/net/ne.c.old 2005-07-22 18:24:32.000000000 +0200 +++ linux-2.6.13-rc3-mm1-full/drivers/net/ne.c 2005-07-22 18:24:50.000000000 +0200 @@ -131,7 +131,7 @@ #ifdef CONFIG_PLAT_MAPPI # define DCR_VAL 0x4b -#elif CONFIG_PLAT_OAKS32R +#elif defined(CONFIG_PLAT_OAKS32R) # define DCR_VAL 0x48 #else # define DCR_VAL 0x49 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |