* Felipe Contreras <felipe.contreras@xxxxxxxxx> [101019 00:28]: > Also, don't be picky about the location. As this code is in CONFIG_TIDSPBRIDGE block and AFAIK that is not working, this should probably wait for the next merge window? Regards, Tony > Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> > --- > arch/arm/plat-omap/devices.c | 4 +++- > 1 files changed, 3 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c > index 4c8f9b9..da10433 100644 > --- a/arch/arm/plat-omap/devices.c > +++ b/arch/arm/plat-omap/devices.c > @@ -285,12 +285,14 @@ void __init omap_dsp_reserve_sdram_memblock(void) > if (!size) > return; > > - paddr = __memblock_alloc_base(size, SZ_1M, MEMBLOCK_REAL_LIMIT); > + paddr = memblock_alloc(size, SZ_1M); > if (!paddr) { > pr_err("%s: failed to reserve %x bytes\n", > __func__, size); > return; > } > + memblock_free(paddr, size); > + memblock_remove(paddr, size); > > omap_dsp_phys_mempool_base = paddr; > } > -- > 1.7.3.1.2.g7fe2b > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html