diff options
Diffstat (limited to 'src/superio/nuvoton/common')
-rw-r--r-- | src/superio/nuvoton/common/Kconfig | 4 | ||||
-rw-r--r-- | src/superio/nuvoton/common/nuvoton.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/superio/nuvoton/common/Kconfig b/src/superio/nuvoton/common/Kconfig index 869f1fe955..0af671f512 100644 --- a/src/superio/nuvoton/common/Kconfig +++ b/src/superio/nuvoton/common/Kconfig @@ -14,6 +14,6 @@ ## # Generic Nuvoton romstage driver - Just enough UART initialisation code for -# romstage. -config SUPERIO_NUVOTON_COMMON_ROMSTAGE +# pre-ram. +config SUPERIO_NUVOTON_COMMON_PRE_RAM bool diff --git a/src/superio/nuvoton/common/nuvoton.h b/src/superio/nuvoton/common/nuvoton.h index 614b039be5..4cb2b6f48e 100644 --- a/src/superio/nuvoton/common/nuvoton.h +++ b/src/superio/nuvoton/common/nuvoton.h @@ -15,8 +15,8 @@ * GNU General Public License for more details. */ -#ifndef SUPERIO_NUVOTON_COMMON_ROMSTAGE_H -#define SUPERIO_NUVOTON_COMMON_ROMSTAGE_H +#ifndef SUPERIO_NUVOTON_COMMON_PRE_RAM_H +#define SUPERIO_NUVOTON_COMMON_PRE_RAM_H #include <arch/io.h> #include <stdint.h> @@ -25,4 +25,4 @@ void nuvoton_pnp_enter_conf_state(pnp_devfn_t dev); void nuvoton_pnp_exit_conf_state(pnp_devfn_t dev); void nuvoton_enable_serial(pnp_devfn_t dev, u16 iobase); -#endif /* SUPERIO_NUVOTON_COMMON_ROMSTAGE_H */ +#endif /* SUPERIO_NUVOTON_COMMON_PRE_RAM_H */ |