mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
[PATCH] bootmem: remove useless parentheses in bootmem header file
Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com> Cc: Dave Hansen <haveblue@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
69d49e681d
commit
71fb2e8f87
@ -59,13 +59,13 @@ extern void * __alloc_bootmem_core(struct bootmem_data *bdata,
|
|||||||
#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
|
#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
|
||||||
extern void reserve_bootmem (unsigned long addr, unsigned long size);
|
extern void reserve_bootmem (unsigned long addr, unsigned long size);
|
||||||
#define alloc_bootmem(x) \
|
#define alloc_bootmem(x) \
|
||||||
__alloc_bootmem((x), SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
|
__alloc_bootmem(x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
|
||||||
#define alloc_bootmem_low(x) \
|
#define alloc_bootmem_low(x) \
|
||||||
__alloc_bootmem_low((x), SMP_CACHE_BYTES, 0)
|
__alloc_bootmem_low(x, SMP_CACHE_BYTES, 0)
|
||||||
#define alloc_bootmem_pages(x) \
|
#define alloc_bootmem_pages(x) \
|
||||||
__alloc_bootmem((x), PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
|
__alloc_bootmem(x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
|
||||||
#define alloc_bootmem_low_pages(x) \
|
#define alloc_bootmem_low_pages(x) \
|
||||||
__alloc_bootmem_low((x), PAGE_SIZE, 0)
|
__alloc_bootmem_low(x, PAGE_SIZE, 0)
|
||||||
#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
|
#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
|
||||||
extern unsigned long free_all_bootmem (void);
|
extern unsigned long free_all_bootmem (void);
|
||||||
extern void * __alloc_bootmem_node (pg_data_t *pgdat, unsigned long size, unsigned long align, unsigned long goal);
|
extern void * __alloc_bootmem_node (pg_data_t *pgdat, unsigned long size, unsigned long align, unsigned long goal);
|
||||||
@ -75,11 +75,11 @@ extern void free_bootmem_node (pg_data_t *pgdat, unsigned long addr, unsigned lo
|
|||||||
extern unsigned long free_all_bootmem_node (pg_data_t *pgdat);
|
extern unsigned long free_all_bootmem_node (pg_data_t *pgdat);
|
||||||
#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
|
#ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE
|
||||||
#define alloc_bootmem_node(pgdat, x) \
|
#define alloc_bootmem_node(pgdat, x) \
|
||||||
__alloc_bootmem_node((pgdat), (x), SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
|
__alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS))
|
||||||
#define alloc_bootmem_pages_node(pgdat, x) \
|
#define alloc_bootmem_pages_node(pgdat, x) \
|
||||||
__alloc_bootmem_node((pgdat), (x), PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
|
__alloc_bootmem_node(pgdat, x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS))
|
||||||
#define alloc_bootmem_low_pages_node(pgdat, x) \
|
#define alloc_bootmem_low_pages_node(pgdat, x) \
|
||||||
__alloc_bootmem_low_node((pgdat), (x), PAGE_SIZE, 0)
|
__alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0)
|
||||||
#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
|
#endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */
|
||||||
|
|
||||||
#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
|
#ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP
|
||||||
|
Loading…
Reference in New Issue
Block a user