Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
This commit is contained in:
Yoshinori Sato 2015-11-04 02:10:09 +09:00
Родитель 3bc27cdfe9
Коммит f639eeb4a6
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,7 @@ config H8300
select OF_EARLY_FLATTREE
select HAVE_MEMBLOCK
select HAVE_DMA_ATTRS
select CLKSRC_OF
config RWSEM_GENERIC_SPINLOCK
def_bool y

Просмотреть файл

@ -29,6 +29,7 @@
#include <linux/clk-provider.h>
#include <linux/memblock.h>
#include <linux/screen_info.h>
#include <linux/clocksource.h>
#include <asm/setup.h>
#include <asm/irq.h>
@ -252,4 +253,5 @@ void __init calibrate_delay(void)
void __init time_init(void)
{
of_clk_init(NULL);
clocksource_probe();
}