| Andrew Isaacson | f137e46 | 2005-10-19 23:56:38 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2000,2001,2004 Broadcom Corporation | 
|  | 3 | * | 
|  | 4 | * This program is free software; you can redistribute it and/or | 
|  | 5 | * modify it under the terms of the GNU General Public License | 
|  | 6 | * as published by the Free Software Foundation; either version 2 | 
|  | 7 | * of the License, or (at your option) any later version. | 
|  | 8 | * | 
|  | 9 | * This program is distributed in the hope that it will be useful, | 
|  | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 12 | * GNU General Public License for more details. | 
|  | 13 | * | 
|  | 14 | * You should have received a copy of the GNU General Public License | 
|  | 15 | * along with this program; if not, write to the Free Software | 
|  | 16 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. | 
|  | 17 | */ | 
| Ralf Baechle | 217dd11 | 2007-11-01 01:57:55 +0000 | [diff] [blame] | 18 | #include <linux/init.h> | 
| Andrew Isaacson | f137e46 | 2005-10-19 23:56:38 -0700 | [diff] [blame] | 19 |  | 
| Ralf Baechle | 217dd11 | 2007-11-01 01:57:55 +0000 | [diff] [blame] | 20 | extern void sb1480_clockevent_init(void); | 
|  | 21 | extern void sb1480_clocksource_init(void); | 
| Ralf Baechle | d527eef | 2007-10-19 08:22:38 +0100 | [diff] [blame] | 22 |  | 
| Ralf Baechle | d045336 | 2007-10-22 10:38:44 +0100 | [diff] [blame] | 23 | void __init plat_time_init(void) | 
| Atsushi Nemoto | 16b7b2a | 2006-10-24 00:21:27 +0900 | [diff] [blame] | 24 | { | 
| Ralf Baechle | d527eef | 2007-10-19 08:22:38 +0100 | [diff] [blame] | 25 | sb1480_clocksource_init(); | 
| Ralf Baechle | e9f874b | 2007-10-11 23:46:10 +0100 | [diff] [blame] | 26 | sb1480_clockevent_init(); | 
| Andrew Isaacson | f137e46 | 2005-10-19 23:56:38 -0700 | [diff] [blame] | 27 | } |