diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-09 16:36:03 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-11-19 21:14:21 +0100 |
commit | 1526b9f570b59519686bddfab278f9d68131b924 (patch) | |
tree | a72978044bbf168c9457c3361dd8844d892d3d22 | |
parent | 36fa5b80843d836518eb89f46747e80ed6b5d96f (diff) | |
download | coreboot-1526b9f570b59519686bddfab278f9d68131b924.tar.xz |
sb700: Make enable_fid_change_on_sb into normal function
Change-Id: I2e1f04790b85e318bc1dc62e3590d9be2ee5ef52
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7378
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
-rw-r--r-- | src/southbridge/amd/sb700/early_setup.c | 2 | ||||
-rw-r--r-- | src/southbridge/amd/sb700/sb700.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/amd/sb700/early_setup.c b/src/southbridge/amd/sb700/early_setup.c index 91a2299a92..ae329129de 100644 --- a/src/southbridge/amd/sb700/early_setup.c +++ b/src/southbridge/amd/sb700/early_setup.c @@ -236,7 +236,7 @@ static u8 dual_core(void) /* * RPR 2.4 C-state and VID/FID change for the K8 platform. */ -void __attribute__((weak)) enable_fid_change_on_sb(u32 sbbusn, u32 sbdn) +void enable_fid_change_on_sb(u32 sbbusn, u32 sbdn) { u8 byte; byte = pmio_read(0x9a); diff --git a/src/southbridge/amd/sb700/sb700.h b/src/southbridge/amd/sb700/sb700.h index 71eb43aef3..c4b91e0803 100644 --- a/src/southbridge/amd/sb700/sb700.h +++ b/src/southbridge/amd/sb700/sb700.h @@ -79,5 +79,5 @@ int s3_save_nvram_early(u32 dword, int size, int nvram_pos); int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos); u32 get_sbdn(u32 bus); -void __attribute__((weak)) enable_fid_change_on_sb(u32 sbbusn, u32 sbdn); +void enable_fid_change_on_sb(u32 sbbusn, u32 sbdn); #endif /* SB700_H */ |