18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-or-later 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (C) 2000,2001,2004 Broadcom Corporation 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci#include <linux/init.h> 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ciextern void sb1480_clockevent_init(void); 88c2ecf20Sopenharmony_ciextern void sb1480_clocksource_init(void); 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_civoid __init plat_time_init(void) 118c2ecf20Sopenharmony_ci{ 128c2ecf20Sopenharmony_ci sb1480_clocksource_init(); 138c2ecf20Sopenharmony_ci sb1480_clockevent_init(); 148c2ecf20Sopenharmony_ci} 15