amd/sb800: Make sb800_setup_sata_phys into regular function

Change-Id: I5fcafb84e42b6bbcae4a37ad6213289a27019197
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7381
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
diff --git a/src/southbridge/amd/sb800/sata.c b/src/southbridge/amd/sb800/sata.c
index 5ac6144..bd35e50 100644
--- a/src/southbridge/amd/sb800/sata.c
+++ b/src/southbridge/amd/sb800/sata.c
@@ -53,7 +53,7 @@
 	return 0;
 }
 
-void __attribute__((weak)) sb800_setup_sata_phys(struct device *dev)
+static void sb800_setup_sata_phys(struct device *dev)
 {
 	int i;
 	static const u32 sata_phy[][3] = {
diff --git a/src/southbridge/amd/sb800/sb800.h b/src/southbridge/amd/sb800/sb800.h
index 25e3f1f..5d299c8 100644
--- a/src/southbridge/amd/sb800/sb800.h
+++ b/src/southbridge/amd/sb800/sb800.h
@@ -60,7 +60,6 @@
 
 #else
 void sb800_enable(device_t dev);
-void __attribute__((weak)) sb800_setup_sata_phys(struct device *dev);
 #endif
 
 #endif /* SB800_H */