From 6403167d290da235a732bd2d6157aa2124fb403a Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Sat, 21 Apr 2018 14:45:32 -0600 Subject: compiler.h: add __weak macro Instead of writing out '__attribute__((weak))' use a shorter form. Change-Id: If418a1d55052780077febd2d8f2089021f414b91 Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/25767 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans Reviewed-by: Justin TerAvest --- src/southbridge/amd/sb700/sata.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/southbridge/amd/sb700/sata.c') diff --git a/src/southbridge/amd/sb700/sata.c b/src/southbridge/amd/sb700/sata.c index 537c2c08b4..2045d52f2d 100644 --- a/src/southbridge/amd/sb700/sata.c +++ b/src/southbridge/amd/sb700/sata.c @@ -14,6 +14,7 @@ * GNU General Public License for more details. */ +#include #include #include #include @@ -66,7 +67,7 @@ static int sata_drive_detect(int portnum, uint16_t iobar) } /* This function can be overloaded in mainboard.c */ -void __attribute__((weak)) sb7xx_51xx_setup_sata_phys(struct device *dev) +void __weak sb7xx_51xx_setup_sata_phys(struct device *dev) { /* RPR7.6.1 Program the PHY Global Control to 0x2C00 */ pci_write_config16(dev, 0x86, 0x2c00); @@ -89,7 +90,7 @@ void __attribute__((weak)) sb7xx_51xx_setup_sata_phys(struct device *dev) } /* This function can be overloaded in mainboard.c */ -void __attribute__((weak)) sb7xx_51xx_setup_sata_port_indication(void *sata_bar5) +void __weak sb7xx_51xx_setup_sata_port_indication(void *sata_bar5) { uint32_t dword; -- cgit v1.2.3