diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2005-11-23 21:12:47 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2005-11-23 21:12:47 +0000 |
commit | d6bd192f6c607ea4b90e2d1ef9da19d9b20d5c22 (patch) | |
tree | c35d6323f9e01fab7d79d89e491b5b2468340fcc /src | |
parent | fb0a64ba77dbf1fa00d07453c76b875cd124cfcb (diff) |
remove rev f ifdef
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2097 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/amd/model_fxx/model_fxx_update_microcode.c | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/src/cpu/amd/model_fxx/model_fxx_update_microcode.c b/src/cpu/amd/model_fxx/model_fxx_update_microcode.c index 2b21ee90c8..63820f5bed 100644 --- a/src/cpu/amd/model_fxx/model_fxx_update_microcode.c +++ b/src/cpu/amd/model_fxx/model_fxx_update_microcode.c @@ -52,15 +52,10 @@ $1.0$ static uint8_t microcode_updates[] __attribute__ ((aligned(16))) = { -#if K8_REV_F_SUPPORT == 0 - #include "microcode_rev_c.h" - #include "microcode_rev_d.h" - #include "microcode_rev_e.h" -#endif - -#if K8_REV_F_SUPPORT == 1 -// #include "microcode_rev_f.h" -#endif +#include "microcode_rev_c.h" +#include "microcode_rev_d.h" +#include "microcode_rev_e.h" + /* Dummy terminator */ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @@ -70,7 +65,6 @@ static uint8_t microcode_updates[] __attribute__ ((aligned(16))) = { static unsigned get_equivalent_processor_rev_id(unsigned orig_id) { static unsigned id_mapping_table[] = { - #if K8_REV_F_SUPPORT == 0 0x0f48, 0x0048, 0x0f58, 0x0048, @@ -91,11 +85,6 @@ static unsigned get_equivalent_processor_rev_id(unsigned orig_id) { 0x20f12, 0x0210, 0x20f32, 0x0210, 0x20fb1, 0x0210, - #endif - - #if K8_REV_F_SUPPORT == 1 - - #endif }; |