]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ae3xx: timer: Rename AE3XX to ATCPIT100
authorRick Chen <rickchen36@gmail.com>
Tue, 28 Nov 2017 01:23:23 +0000 (09:23 +0800)
committerRick Chen <rickchen36@gmail.com>
Thu, 30 Nov 2017 01:38:54 +0000 (09:38 +0800)
ATCPIT100 is Andestech timer IP which is embeded
in AE3XX and AE250 boards. So rename AE3XX to
ATCPIT100 will be more make sence.

Signed-off-by: rick <rick@andestech.com>
Signed-off-by: Rick Chen <rickchen36@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
configs/adp-ae3xx_defconfig
drivers/timer/Kconfig
drivers/timer/Makefile
drivers/timer/atcpit100_timer.c [moved from drivers/timer/ae3xx_timer.c with 100% similarity]

index a3a40bf1e9b05413e97f038148cbb484d0ed4893..337cee1464f3d4b094106dc46855880517d096d5 100644 (file)
@@ -35,4 +35,4 @@ CONFIG_SYS_NS16550=y
 CONFIG_DM_SPI=y
 CONFIG_NDS_AE3XX_SPI=y
 CONFIG_TIMER=y
-CONFIG_AE3XX_TIMER=y
+CONFIG_ATCPIT100_TIMER=y
index 6305bbf01cde236a721200cc200a2e0906949b63..fcfdf4e83910061e798dd846c4cebe3a3bfdd262 100644 (file)
@@ -105,11 +105,12 @@ config AG101P_TIMER
        help
          Select this to enable a timer for AG01P devices.
 
-config AE3XX_TIMER
-       bool "AE3XX timer support"
+config ATCPIT100_TIMER
+       bool "ATCPIT100 timer support"
        depends on TIMER && NDS32
        help
-         Select this to enable a timer for AE3XX devices.
+         Select this to enable a ATCPIT100 timer which will be embeded
+               in AE3XX, AE250 boards.
 
 config ROCKCHIP_TIMER
         bool "Rockchip timer support"
index 69e8961a7ba774bb0f6c6d8bf16aec53a03139ec..15e515407e30972f7a3f74dfbb5f9461a704c9eb 100644 (file)
@@ -13,6 +13,6 @@ obj-$(CONFIG_AST_TIMER)       += ast_timer.o
 obj-$(CONFIG_STI_TIMER)                += sti-timer.o
 obj-$(CONFIG_ARC_TIMER)        += arc_timer.o
 obj-$(CONFIG_AG101P_TIMER) += ag101p_timer.o
-obj-$(CONFIG_AE3XX_TIMER) += ae3xx_timer.o
+obj-$(CONFIG_ATCPIT100_TIMER) += atcpit100_timer.o
 obj-$(CONFIG_ROCKCHIP_TIMER) += rockchip_timer.o
 obj-$(CONFIG_ATMEL_PIT_TIMER) += atmel_pit_timer.o