xref: /openbmc/linux/arch/mips/sibyte/bcm1480/time.c (revision 1a59d1b8)
11a59d1b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
2f137e463SAndrew Isaacson /*
3f137e463SAndrew Isaacson  * Copyright (C) 2000,2001,2004 Broadcom Corporation
4f137e463SAndrew Isaacson  */
5217dd11eSRalf Baechle #include <linux/init.h>
6f137e463SAndrew Isaacson 
7217dd11eSRalf Baechle extern void sb1480_clockevent_init(void);
8217dd11eSRalf Baechle extern void sb1480_clocksource_init(void);
9d527eef5SRalf Baechle 
plat_time_init(void)10d0453365SRalf Baechle void __init plat_time_init(void)
1116b7b2acSAtsushi Nemoto {
12d527eef5SRalf Baechle 	sb1480_clocksource_init();
13e9f874b6SRalf Baechle 	sb1480_clockevent_init();
14f137e463SAndrew Isaacson }
15