]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
memblock: Remove unused memblock.debug struct member
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 6 Jul 2010 22:39:04 +0000 (15:39 -0700)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 5 Aug 2010 02:56:10 +0000 (12:56 +1000)
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
include/linux/memblock.h

index b65045a4ed089144890257676707dc1cfaac3f30..0fe6dd56a4b4da004b86df4027ef11a307a291d3 100644 (file)
@@ -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);