diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2023-08-09 16:10:33 +0200 |
---|---|---|
committer | Jakub Czapiga <jacz@semihalf.com> | 2023-08-11 11:19:54 +0000 |
commit | 1f5d1682acd1ee3d782270bed77ac2e5a9f14b0a (patch) | |
tree | 6e0b934b78ef886bc3712f50419e8f0c89bd283c | |
parent | 6f5ead14b4dea54011ce506535cd5294a672d9d0 (diff) |
drivers/pc80/rtc: Hide bank register ports from menu
It makes no sense to expose these symbols to the user in the menu.
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: I6eb78d12afdc0828bf5e2d305f033d2f0cf4622a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77109
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Jonathon Hall <jonathon.hall@puri.sm>
-rw-r--r-- | src/drivers/pc80/rtc/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/pc80/rtc/Kconfig b/src/drivers/pc80/rtc/Kconfig index 7a1c398d5c..cd9c416b24 100644 --- a/src/drivers/pc80/rtc/Kconfig +++ b/src/drivers/pc80/rtc/Kconfig @@ -11,9 +11,9 @@ config USE_PC_CMOS_ALTCENTURY May be useful for legacy OSes that assume its presence. config PC_CMOS_BASE_PORT_BANK0 - hex "Base port for CMOS bank 0 index/data registers" + hex default 0x70 config PC_CMOS_BASE_PORT_BANK1 - hex "Base port for CMOS bank 1 index/data registers" + hex default 0x72 |