diff options
author | Florian Zumbiehl <florz@florz.de> | 2011-11-01 20:19:01 +0100 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-11-07 19:17:30 +0100 |
commit | 0802ad90ccfb6caa270918b5fc7aa628cf2a0378 (patch) | |
tree | 77adba6fd0575182724f68e32220cb3678238218 /src/southbridge/via/k8t890/k8x8xx.h | |
parent | 1e1e8593bc9218c62dc187ce965020045ab385ea (diff) | |
download | coreboot-0802ad90ccfb6caa270918b5fc7aa628cf2a0378.tar.xz |
rename vt8237r_cfg() to k8x8xx_vt8237r_cfg() and make publicly accessible
Change-Id: I82d1ec5117a58aaa8cfd2a342b7172a2786f5680
Signed-off-by: Florian Zumbiehl <florz@florz.de>
Reviewed-on: http://review.coreboot.org/379
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/southbridge/via/k8t890/k8x8xx.h')
-rw-r--r-- | src/southbridge/via/k8t890/k8x8xx.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/southbridge/via/k8t890/k8x8xx.h b/src/southbridge/via/k8t890/k8x8xx.h index 425aaeb5e8..c61c98426b 100644 --- a/src/southbridge/via/k8t890/k8x8xx.h +++ b/src/southbridge/via/k8t890/k8x8xx.h @@ -23,6 +23,9 @@ #include <cpu/x86/msr.h> #include <cpu/amd/mtrr.h> +#ifndef __PRE_RAM__ +#include <device/device.h> +#endif #include "k8t890.h" struct k8x8xx_vt8237_mirrored_regs { @@ -48,4 +51,8 @@ static inline void k8x8xx_vt8237_mirrored_regs_fill(struct k8x8xx_vt8237_mirrore regs->low_top_address = msr.lo >> 16; } +#ifndef __PRE_RAM__ +void k8x8xx_vt8237r_cfg(struct device *, struct device *); +#endif + #endif /* SOUTHBRIDGE_VIA_K8T890_K8X8XX_H */ |