Browse Source

x86: Move setup_pcat_compatibility() out of board.c

This function simply does not belong in board.c

--
Changes for v2:
 - Added commit message
Graeme Russ 13 years ago
parent
commit
8e18e6e173
2 changed files with 7 additions and 7 deletions
  1. 0 7
      arch/x86/lib/board.c
  2. 7 0
      arch/x86/lib/zimage.c

+ 0 - 7
arch/x86/lib/board.c

@@ -486,10 +486,3 @@ void hang(void)
 	for (;;)
 		;
 }
-
-void setup_pcat_compatibility(void)
-	__attribute__((weak, alias("__setup_pcat_compatibility")));
-
-void __setup_pcat_compatibility(void)
-{
-}

+ 7 - 0
arch/x86/lib/zimage.c

@@ -314,6 +314,13 @@ void boot_zimage(void *setup_base, void *load_address)
 #endif
 }
 
+void setup_pcat_compatibility(void)
+	__attribute__((weak, alias("__setup_pcat_compatibility")));
+
+void __setup_pcat_compatibility(void)
+{
+}
+
 int do_zboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
 {
 	struct boot_params *base_ptr;