summaryrefslogtreecommitdiff
path: root/drivers/timer
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2020-10-26 04:46:57 +0300
committerAndes <uboot@andestech.com>2020-10-26 05:01:28 +0300
commit7dbebebb7949655f35d90c612eaf92e3d2c9ed24 (patch)
tree7d2f7f16eb9071314d170a1a64cfe0d2dc4dea5f /drivers/timer
parent79b135f1f937296fbe40ffa8500b531a7e1a0e9d (diff)
downloadu-boot-7dbebebb7949655f35d90c612eaf92e3d2c9ed24.tar.xz
timer: Add _TIMER suffix to Andes PLMT Kconfig
This matches the naming scheme of other timer drivers. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'drivers/timer')
-rw-r--r--drivers/timer/Kconfig2
-rw-r--r--drivers/timer/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/timer/Kconfig b/drivers/timer/Kconfig
index 6b8e4c9dc0..80743a2551 100644
--- a/drivers/timer/Kconfig
+++ b/drivers/timer/Kconfig
@@ -53,7 +53,7 @@ config ALTERA_TIMER
Select this to enable a timer for Altera devices. Please find
details on the "Embedded Peripherals IP User Guide" of Altera.
-config ANDES_PLMT
+config ANDES_PLMT_TIMER
bool
depends on RISCV_MMODE || SPL_RISCV_MMODE
help
diff --git a/drivers/timer/Makefile b/drivers/timer/Makefile
index dd4f9cc1d4..226227c8ec 100644
--- a/drivers/timer/Makefile
+++ b/drivers/timer/Makefile
@@ -5,7 +5,7 @@
obj-y += timer-uclass.o
obj-$(CONFIG_AG101P_TIMER) += ag101p_timer.o
obj-$(CONFIG_ALTERA_TIMER) += altera_timer.o
-obj-$(CONFIG_ANDES_PLMT) += andes_plmt_timer.o
+obj-$(CONFIG_ANDES_PLMT_TIMER) += andes_plmt_timer.o
obj-$(CONFIG_ARC_TIMER) += arc_timer.o
obj-$(CONFIG_AST_TIMER) += ast_timer.o
obj-$(CONFIG_ATCPIT100_TIMER) += atcpit100_timer.o