From: Hauke Mehrtens Date: Sat, 24 Aug 2013 14:28:58 +0000 (+0200) Subject: backports: fix typo in define X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=551f46cb4472f03bea0df808ef892ea8eb49a2af;p=openwrt%2Fstaging%2Fblogic.git backports: fix typo in define This fixes a build error one some non x86 systems. Signed-off-by: Hauke Mehrtens Signed-off-by: Luis R. Rodriguez --- diff --git a/backport/backport-include/linux/types.h b/backport/backport-include/linux/types.h index cd46e0762d27..ec7fe7d779ff 100644 --- a/backport/backport-include/linux/types.h +++ b/backport/backport-include/linux/types.h @@ -11,7 +11,7 @@ * as of 2.6.28 but x86 and ppc had it already. */ #else -#if defined(CONFIG_64BIT) || defined(CONFIG_X86_PAE) || defned(CONFIG_PPC64) || defined(CONFIG_PHYS_64BIT) +#if defined(CONFIG_64BIT) || defined(CONFIG_X86_PAE) || defined(CONFIG_PPC64) || defined(CONFIG_PHYS_64BIT) #define CONFIG_PHYS_ADDR_T_64BIT 1 typedef u64 phys_addr_t; #else