aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAkinobu Mita <akinobu.mita@gmail.com>2008-04-19 23:55:19 +0900
committerIngo Molnar <mingo@elte.hu>2008-04-26 17:35:47 +0200
commitae5830a6f8278e1bb700a0956cacc9ceaf311f83 (patch)
treed6716a378cced4be66ccab5e7fe5ccb1b4f17520 /include
parentx86: get_bios_ebda() requires asm/io.h (diff)
downloadlinux-dev-ae5830a6f8278e1bb700a0956cacc9ceaf311f83.tar.xz
linux-dev-ae5830a6f8278e1bb700a0956cacc9ceaf311f83.zip
x86: remove duplicate get_bios_ebda() from rio.h
get_bios_ebda() exists in asm/rio.h and asm/bios_ebda.h. This patch removes the one in asm/rio.h. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/rio.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/asm-x86/rio.h b/include/asm-x86/rio.h
index 3451c576e6af..c9448bd8968f 100644
--- a/include/asm-x86/rio.h
+++ b/include/asm-x86/rio.h
@@ -60,15 +60,4 @@ enum {
ALT_CALGARY = 5, /* Second Planar Calgary */
};
-/*
- * there is a real-mode segmented pointer pointing to the
- * 4K EBDA area at 0x40E.
- */
-static inline unsigned long get_bios_ebda(void)
-{
- unsigned long address = *(unsigned short *)phys_to_virt(0x40EUL);
- address <<= 4;
- return address;
-}
-
#endif /* __ASM_RIO_H */