From: Benjamin Herrenschmidt Date: Tue, 6 Jul 2010 22:39:04 +0000 (-0700) Subject: memblock: Remove unused memblock.debug struct member X-Git-Tag: v2.6.37-rc1~183^2~56 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9d3c30f5a17ec35894eadb7171f724643dce19c3;p=~emulex%2Finfiniband.git memblock: Remove unused memblock.debug struct member Signed-off-by: Benjamin Herrenschmidt --- diff --git a/include/linux/memblock.h b/include/linux/memblock.h index b65045a4ed0..0fe6dd56a4b 100644 --- a/include/linux/memblock.h +++ b/include/linux/memblock.h @@ -32,7 +32,6 @@ struct memblock_type { }; struct memblock { - unsigned long debug; phys_addr_t current_limit; struct memblock_type memory; struct memblock_type reserved; @@ -55,9 +54,11 @@ extern phys_addr_t __init memblock_alloc(phys_addr_t size, phys_addr_t align); #define MEMBLOCK_ALLOC_ACCESSIBLE 0 extern phys_addr_t __init memblock_alloc_base(phys_addr_t size, - phys_addr_t, phys_addr_t max_addr); + phys_addr_t align, + phys_addr_t max_addr); extern phys_addr_t __init __memblock_alloc_base(phys_addr_t size, - phys_addr_t align, phys_addr_t max_addr); + phys_addr_t align, + phys_addr_t max_addr); extern phys_addr_t __init memblock_phys_mem_size(void); extern phys_addr_t memblock_end_of_DRAM(void); extern void __init memblock_enforce_memory_limit(phys_addr_t memory_limit);