diff options
Diffstat (limited to 'arch/arm/mach-omap2/dsp.c')
| -rw-r--r-- | arch/arm/mach-omap2/dsp.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/dsp.c b/arch/arm/mach-omap2/dsp.c index 74f18f2952d..3376388b317 100644 --- a/arch/arm/mach-omap2/dsp.c +++ b/arch/arm/mach-omap2/dsp.c @@ -57,8 +57,9 @@ static int __init omap_dsp_init(void)  	if (pdata->phys_mempool_base) {  		pdata->phys_mempool_size = CONFIG_TIDSPBRIDGE_MEMPOOL_SIZE; -		pr_info("%s: %x bytes @ %x\n", __func__, -			pdata->phys_mempool_size, pdata->phys_mempool_base); +		pr_info("%s: %llx bytes @ %llx\n", __func__, +			(unsigned long long)pdata->phys_mempool_size, +			(unsigned long long)pdata->phys_mempool_base);  	}  	pdev = platform_device_alloc("omap-dsp", -1);  |