time.c 225 B

123456789101112
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2005-2017 Andes Technology Corporation
  3. #include <linux/clocksource.h>
  4. #include <linux/clk-provider.h>
  5. void __init time_init(void)
  6. {
  7. of_clk_init(NULL);
  8. timer_probe();
  9. }