aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/pci-dma.c
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2008-07-25 16:48:55 +0200
committerIngo Molnar <mingo@elte.hu>2008-07-26 15:39:20 +0200
commit1ddb5518052e4e28ab489237443f7443b3fd69ca (patch)
tree1bec7d8d68284373adc20a6ec72efcab49beba3f /arch/x86/kernel/pci-dma.c
parentMerge branch 'linus' into x86/cleanups (diff)
downloadlinux-dev-1ddb5518052e4e28ab489237443f7443b3fd69ca.tar.xz
linux-dev-1ddb5518052e4e28ab489237443f7443b3fd69ca.zip
x86: convert pci-dma.c from round_up to roundup
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/pci-dma.c')
-rw-r--r--arch/x86/kernel/pci-dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
index cbecb05551bb..88ddd04cfa98 100644
--- a/arch/x86/kernel/pci-dma.c
+++ b/arch/x86/kernel/pci-dma.c
@@ -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)