mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 17:33:01 +00:00
45228ef322
The abx500 clock driver is a platform driver which will be initialized during arch init. The platform device shall be added from the ab-core driver as a mfd child device to maintain correct boot sequence. Depending on what ab version we use, different clock definitions will be added. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
16 lines
217 B
Makefile
16 lines
217 B
Makefile
#
|
|
# Makefile for ux500 clocks
|
|
#
|
|
|
|
# Clock types
|
|
obj-y += clk-prcc.o
|
|
obj-y += clk-prcmu.o
|
|
|
|
# Clock definitions
|
|
obj-y += u8500_clk.o
|
|
obj-y += u9540_clk.o
|
|
obj-y += u8540_clk.o
|
|
|
|
# ABX500 clock driver
|
|
obj-y += abx500-clk.o
|