time.c 222 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3. #include <linux/clocksource.h>
  4. #include <linux/of_clk.h>
  5. void __init time_init(void)
  6. {
  7. of_clk_init(NULL);
  8. timer_probe();
  9. }