blob: 7167fd331d86e8e6a05546e7d1ecb3dd4774f94f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* arch/arm/mach-spear6xx/include/mach/generic.h
*
* SPEAr6XX machine family specific generic header file
*
* Copyright (C) 2009 ST Microelectronics
* Rajeev Kumar<rajeev-dlh.kumar@st.com>
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
#ifndef __MACH_GENERIC_H
#define __MACH_GENERIC_H
#include <linux/init.h>
void __init spear_setup_timer(resource_size_t base, int irq);
void spear_restart(char, const char *);
void __init spear6xx_clk_init(void);
#endif /* __MACH_GENERIC_H */
|