diff options
author | Simon Glass <sjg@chromium.org> | 2016-03-11 22:06:59 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-03-17 10:27:24 +0800 |
commit | 2a605d4d8889ac5dd4c806b3a37ba75a80716e46 (patch) | |
tree | 7c1eed482d1dec1984ad9f0af39936649f2f8bef /arch/x86/include | |
parent | 50dd3da0042b4502bab622ef7f72f628b842cf26 (diff) | |
download | u-boot-imx-2a605d4d8889ac5dd4c806b3a37ba75a80716e46.zip u-boot-imx-2a605d4d8889ac5dd4c806b3a37ba75a80716e46.tar.gz u-boot-imx-2a605d4d8889ac5dd4c806b3a37ba75a80716e46.tar.bz2 |
x86: Rename PORT_RESET to IO_PORT_RESET
This same name is used in USB. Add a prefix to distinguish it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index 7c77b90..cefc633 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h @@ -36,7 +36,7 @@ * * The naming follows Intel's naming. */ -#define PORT_RESET 0xcf9 +#define IO_PORT_RESET 0xcf9 enum { SYS_RST = 1 << 1, /* 0 for soft reset, 1 for hard reset */ |