Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1273108
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] mm: include linux/pfn.h for PHYS_PFN definition |
| Date | 2015-11-19 13:50 +0100 |
| Message-ID | <qwwP0-VP-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
A change to asm-generic/memory_model.h caused a new build error
in some configurations:
mach-clps711x/common.c:39:10: error: implicit declaration of function 'PHYS_PFN'
.pfn = __phys_to_pfn(CLPS711X_PHYS_BASE),
This includes the linux/pfn.h header from the same file to avoid the
error.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: bf1c6c9895de ("mm: add PHYS_PFN, use it in __phys_to_pfn()")
---
I was listed as 'Cc' on the original patch, but don't see it in my inbox.
I can queue up the fixed version in the asm-generic tree if you like that,
otherwise please fold this fixup into the patch, or drop it if we want to
avoid the extra #include.
diff --git a/include/asm-generic/memory_model.h b/include/asm-generic/memory_model.h
index c785a79d9385..5148150cc80b 100644
--- a/include/asm-generic/memory_model.h
+++ b/include/asm-generic/memory_model.h
@@ -1,6 +1,8 @@
#ifndef __ASM_MEMORY_MODEL_H
#define __ASM_MEMORY_MODEL_H
+#include <linux/pfn.h>
+
#ifndef __ASSEMBLY__
#if defined(CONFIG_FLATMEM)
--
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/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] mm: include linux/pfn.h for PHYS_PFN definition Arnd Bergmann <arnd@arndb.de> - 2015-11-19 13:50 +0100
csiph-web