[MIPS] Jazz: Fix warning.

arch/mips/jazz/jazzdma.c:70: warning: assignment makes integer from pointer without a cast

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+2 -1
+2 -1
arch/mips/jazz/jazzdma.c
··· 67 67 * aligned and should be uncached to avoid cache flushing after every 68 68 * update. 69 69 */ 70 - vdma_pagetable_start = alloc_bootmem_low_pages(VDMA_PGTBL_SIZE); 70 + vdma_pagetable_start = 71 + (unsigned long) alloc_bootmem_low_pages(VDMA_PGTBL_SIZE); 71 72 if (!vdma_pagetable_start) 72 73 BUG(); 73 74 dma_cache_wback_inv(vdma_pagetable_start, VDMA_PGTBL_SIZE);