clocksource: dw_apb_timer_of: select DW_APB_TIMER
dw_apb_timer_of is the driver part facing devicetree platforms and calls into dw_apb_timer with the data gathered from the dt. Currently the two platforms using the dw_apb_timer_of select both the options for the core timer and the dt addon. As dw_apb_timer_of always depends on dw_apb_timer let it select DW_APB_TIMER itself without the need for every platform to do it. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Jamie Iles <jamie@jamieiles.com> Acked-by: Dinh Nguyen <dinguyen@altera.com>
This commit is contained in:
parent
a8b447f2bb
commit
1b4eca0f63
|
@ -4,7 +4,6 @@ config ARCH_PICOXCELL
|
||||||
select ARM_PATCH_PHYS_VIRT
|
select ARM_PATCH_PHYS_VIRT
|
||||||
select ARM_VIC
|
select ARM_VIC
|
||||||
select CPU_V6K
|
select CPU_V6K
|
||||||
select DW_APB_TIMER
|
|
||||||
select DW_APB_TIMER_OF
|
select DW_APB_TIMER_OF
|
||||||
select GENERIC_CLOCKEVENTS
|
select GENERIC_CLOCKEVENTS
|
||||||
select HAVE_TCM
|
select HAVE_TCM
|
||||||
|
|
|
@ -7,7 +7,6 @@ config ARCH_SOCFPGA
|
||||||
select CLKDEV_LOOKUP
|
select CLKDEV_LOOKUP
|
||||||
select COMMON_CLK
|
select COMMON_CLK
|
||||||
select CPU_V7
|
select CPU_V7
|
||||||
select DW_APB_TIMER
|
|
||||||
select DW_APB_TIMER_OF
|
select DW_APB_TIMER_OF
|
||||||
select GENERIC_CLOCKEVENTS
|
select GENERIC_CLOCKEVENTS
|
||||||
select GPIO_PL061 if GPIOLIB
|
select GPIO_PL061 if GPIOLIB
|
||||||
|
|
|
@ -21,6 +21,7 @@ config DW_APB_TIMER
|
||||||
|
|
||||||
config DW_APB_TIMER_OF
|
config DW_APB_TIMER_OF
|
||||||
bool
|
bool
|
||||||
|
select DW_APB_TIMER
|
||||||
|
|
||||||
config ARMADA_370_XP_TIMER
|
config ARMADA_370_XP_TIMER
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in New Issue