diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cpu/intel/microcode.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/include/cpu/intel/microcode.h b/src/include/cpu/intel/microcode.h index 4139c01e82..289e9196fa 100644 --- a/src/include/cpu/intel/microcode.h +++ b/src/include/cpu/intel/microcode.h @@ -1,6 +1,7 @@ /* * This file is part of the coreboot project. * + * Copyright (C) 2012 The ChromiumOS Authors. All rights reserved. * Copyright (C) 2000 Ronald G. Minnich * * This program is free software; you can redistribute it and/or modify @@ -16,7 +17,15 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef __CPU__INTEL__MICROCODE__ +#define __CPU__INTEL__MICROCODE__ -#if !defined(__ROMCC__) +#ifndef __PRE_RAM__ +#if CONFIG_MICROCODE_IN_CBFS +void intel_update_microcode_from_cbfs(void); +#else void intel_update_microcode(const void *microcode_updates); #endif +#endif + +#endif |