]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: convert pci-dma.c from round_up to roundup
authorJoerg Roedel <joerg.roedel@amd.com>
Fri, 25 Jul 2008 14:48:55 +0000 (16:48 +0200)
committerIngo Molnar <mingo@elte.hu>
Sat, 26 Jul 2008 13:39:20 +0000 (15:39 +0200)
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/pci-dma.c

index cbecb05551bbcefeb68e6048bd1dd5aeab5376f7..88ddd04cfa98da31faa558d30947a679cfa296cd 100644 (file)
@@ -82,7 +82,7 @@ void __init dma32_reserve_bootmem(void)
         * using 512M as goal
         */
        align = 64ULL<<20;
-       size = round_up(dma32_bootmem_size, align);
+       size = roundup(dma32_bootmem_size, align);
        dma32_bootmem_ptr = __alloc_bootmem_nopanic(size, align,
                                 512ULL<<20);
        if (dma32_bootmem_ptr)