Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303145
b: refs/heads/master
c: 28ee793
h: refs/heads/master
i:
  303143: 12b25ed
v: v3
  • Loading branch information
Felipe Contreras authored and Tony Lindgren committed May 9, 2012
1 parent 3e50842 commit 4230049
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1ee47b0ae83e3cae2f9362113b3935898fdb3ea9
refs/heads/master: 28ee793e7ad4a00e41c6267075501694c94451fb
5 changes: 3 additions & 2 deletions trunk/arch/arm/mach-omap2/dsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-omap/devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ void __init omap_dsp_reserve_sdram_memblock(void)

paddr = arm_memblock_steal(size, SZ_1M);
if (!paddr) {
pr_err("%s: failed to reserve %x bytes\n",
__func__, size);
pr_err("%s: failed to reserve %llx bytes\n",
__func__, (unsigned long long)size);
return;
}

Expand Down

0 comments on commit 4230049

Please sign in to comment.