/*1* Copyright (C) 2000,2001,2004 Broadcom Corporation2*3* This program is free software; you can redistribute it and/or4* modify it under the terms of the GNU General Public License5* as published by the Free Software Foundation; either version 26* of the License, or (at your option) any later version.7*8* This program is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11* GNU General Public License for more details.12*13* You should have received a copy of the GNU General Public License14* along with this program; if not, write to the Free Software15* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.16*/17#include <linux/init.h>1819extern void sb1480_clockevent_init(void);20extern void sb1480_clocksource_init(void);2122void __init plat_time_init(void)23{24sb1480_clocksource_init();25sb1480_clockevent_init();26}272829