summaryrefslogtreecommitdiff
path: root/backport
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2013-08-24 16:28:58 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2013-10-28 23:29:07 +0100
commit9257103d0d58bfe41d2339c59c715135f1bb3a84 (patch)
treee5575baf4306b3dbd8f4d514e6fb87de5f36bc49 /backport
parentf9d45134ba57381a079b78e04046f3d7d224785a (diff)
backports: fix typo in define
Upstream commit: 551f46cb4472f03bea0df808ef892ea8eb49a2af This fixes a build error one some non x86 systems. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Diffstat (limited to 'backport')
-rw-r--r--backport/backport-include/linux/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backport/backport-include/linux/types.h b/backport/backport-include/linux/types.h
index 504a615c..1dd187ae 100644
--- a/backport/backport-include/linux/types.h
+++ b/backport/backport-include/linux/types.h
@@ -21,7 +21,7 @@ typedef u32 phys_addr_t;
* 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