]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] Delete unused definitions of kvaddr_to_nid
authorRalf Baechle <ralf@linux-mips.org>
Fri, 23 Jun 2006 09:03:50 +0000 (02:03 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Fri, 23 Jun 2006 14:42:52 +0000 (07:42 -0700)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/asm-mips/mmzone.h
include/asm-parisc/mmzone.h
include/asm-x86_64/mmzone.h

index dc231c89bef9b5a2147530f52b71cc62e6c3945b..f53ec54c92ffa17ee35ebd5514d25676904601fd 100644 (file)
@@ -10,7 +10,6 @@
 
 #ifdef CONFIG_DISCONTIGMEM
 
-#define kvaddr_to_nid(kvaddr)  pa_to_nid(__pa(kvaddr))
 #define pfn_to_nid(pfn)                pa_to_nid((pfn) << PAGE_SHIFT)
 
 #endif /* CONFIG_DISCONTIGMEM */
index ceb9b73199d132273c135cbf646711c412306591..c87813662d4da83d80d78dc8cb65a7fd43a64822 100644 (file)
@@ -14,11 +14,6 @@ extern struct node_map_data node_data[];
 
 #define NODE_DATA(nid)          (&node_data[nid].pg_data)
 
-/*
- * Given a kernel address, find the home node of the underlying memory.
- */
-#define kvaddr_to_nid(kaddr)   pfn_to_nid(__pa(kaddr) >> PAGE_SHIFT)
-
 #define node_start_pfn(nid)    (NODE_DATA(nid)->node_start_pfn)
 #define node_end_pfn(nid)                                              \
 ({                                                                     \
index 70bb9969766e2f11df1ca81e5c1ad6168c05bff8..c38ebdf6f426ad41ddfc19fc8df42553eae4b5a6 100644 (file)
@@ -42,7 +42,6 @@ static inline __attribute__((pure)) int phys_to_nid(unsigned long addr)
 
 #ifdef CONFIG_DISCONTIGMEM
 #define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
-#define kvaddr_to_nid(kaddr)   phys_to_nid(__pa(kaddr))
 
 extern int pfn_valid(unsigned long pfn);
 #endif