aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/memblock.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-08-03 23:52:25 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2010-08-04 22:56:02 -0400
commit1e2b904026e9debf95f500b8980a00c43ac0f31c (patch)
tree8fcd7bd0880d04428ed20c38e6dcc0790edf320a /include/linux/memblock.h
parent719c1514f2fef5f01fcfa2bba81b7bb079c7c6a1 (diff)
memblock: Remove obsolete accessors
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'include/linux/memblock.h')
-rw-r--r--include/linux/memblock.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/linux/memblock.h b/include/linux/memblock.h
index c914112cd24..7d70fdd43db 100644
--- a/include/linux/memblock.h
+++ b/include/linux/memblock.h
@@ -64,29 +64,6 @@ extern int memblock_find(struct memblock_region *res);
64 64
65extern void memblock_dump_all(void); 65extern void memblock_dump_all(void);
66 66
67/* Obsolete accessors */
68static inline u64
69memblock_size_bytes(struct memblock_type *type, unsigned long region_nr)
70{
71 return type->regions[region_nr].size;
72}
73static inline u64
74memblock_size_pages(struct memblock_type *type, unsigned long region_nr)
75{
76 return memblock_size_bytes(type, region_nr) >> PAGE_SHIFT;
77}
78static inline u64
79memblock_start_pfn(struct memblock_type *type, unsigned long region_nr)
80{
81 return type->regions[region_nr].base >> PAGE_SHIFT;
82}
83static inline u64
84memblock_end_pfn(struct memblock_type *type, unsigned long region_nr)
85{
86 return memblock_start_pfn(type, region_nr) +
87 memblock_size_pages(type, region_nr);
88}
89
90/* 67/*
91 * pfn conversion functions 68 * pfn conversion functions
92 * 69 *