diff options
Diffstat (limited to 'arch/microblaze/kernel/prom.c')
-rw-r--r-- | arch/microblaze/kernel/prom.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/microblaze/kernel/prom.c b/arch/microblaze/kernel/prom.c index 459c32e4a5fe..050b7993c51c 100644 --- a/arch/microblaze/kernel/prom.c +++ b/arch/microblaze/kernel/prom.c | |||
@@ -118,6 +118,16 @@ void __init early_init_devtree(void *params) | |||
118 | pr_debug(" <- early_init_devtree()\n"); | 118 | pr_debug(" <- early_init_devtree()\n"); |
119 | } | 119 | } |
120 | 120 | ||
121 | #ifdef CONFIG_BLK_DEV_INITRD | ||
122 | void __init early_init_dt_setup_initrd_arch(unsigned long start, | ||
123 | unsigned long end) | ||
124 | { | ||
125 | initrd_start = (unsigned long)__va(start); | ||
126 | initrd_end = (unsigned long)__va(end); | ||
127 | initrd_below_start_ok = 1; | ||
128 | } | ||
129 | #endif | ||
130 | |||
121 | /******* | 131 | /******* |
122 | * | 132 | * |
123 | * New implementation of the OF "find" APIs, return a refcounted | 133 | * New implementation of the OF "find" APIs, return a refcounted |