Add missing include in rom.c. Fixes this build error when CONFIG_MTD=y:
arch/powerpc/sysdev/rom.c:26: error: implicit declaration of function of_platform_device_create
Signed-off-by: Geoff Levand <redacted>
---
arch/powerpc/sysdev/rom.c | 1 +
1 files changed, 1 insertion(+)
--- linux-2.6.19.ppc64.orig/arch/powerpc/sysdev/rom.c
+++ linux-2.6.19.ppc64/arch/powerpc/sysdev/rom.c
@@ -9,6 +9,7 @@
#include <linux/kernel.h>
#include <asm/of_device.h>
+#include <asm/of_platform.h>
static int __init powerpc_flash_init(void)
{
Hello.
Geoff Levand wrote:
Add missing include in rom.c. Fixes this build error when CONFIG_MTD=y:
arch/powerpc/sysdev/rom.c:26: error: implicit declaration of function of_platform_device_create
Uh oh, that's what happens when someone doesn't respin the patches quickly
enough. Finally, the obsolete version has been committed -- it also misses one
property in the node spec and "reg" was called "regs" there...
quoted hunk
Signed-off-by: Geoff Levand <redacted>
---
arch/powerpc/sysdev/rom.c | 1 +
1 files changed, 1 insertion(+)
--- linux-2.6.19.ppc64.orig/arch/powerpc/sysdev/rom.c
+++ linux-2.6.19.ppc64/arch/powerpc/sysdev/rom.c
@@ -9,6 +9,7 @@
#include <linux/kernel.h>
#include <asm/of_device.h>
+#include <asm/of_platform.h>
static int __init powerpc_flash_init(void)
{
WBR, Sergei