From: Yasunori Goto Date: Mon, 12 Dec 2005 08:37:37 +0000 (-0800) Subject: [PATCH] Fix Kconfig of DMA32 for ia64 X-Git-Tag: v3.12-rc1~39001^2~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff9569bc5558e958777fd43580f2ccd83733cdf6;p=kernel%2Fkernel-generic.git [PATCH] Fix Kconfig of DMA32 for ia64 I realized ZONE_DMA32 has a trivial bug at Kconfig for ia64. In include/linux/gfp.h on 2.6.15-rc5-mm1, CONFIG is define like followings. #ifdef CONFIG_DMA_IS_DMA32 #define __GFP_DMA32 ((__force gfp_t)0x01) /* ZONE_DMA is ZONE_DMA32 */ : : So, CONFIG_"ZONE"_DMA_IS_DMA32 is clearly wrong. Signed-off-by: Yasunori Goto Cc: "Luck, Tony" Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index b76ce1f..199eeaf 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig @@ -58,7 +58,7 @@ config IA64_UNCACHED_ALLOCATOR bool select GENERIC_ALLOCATOR -config ZONE_DMA_IS_DMA32 +config DMA_IS_DMA32 bool default y