blob: 68b6e255776aca60c8d2504fe796188c1b774203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* Copyright (c) 2006, Realtek Semiconductor Corp.
*
* rlxbsp.h:
* board module interface
*
* Tony Wu (tonywu@realtek.com.tw)
* Oct. 30, 2006
*/
#ifndef _RLXBSP_H_
#define _RLXBSP_H_
/*
* Function prototypes
*/
#ifndef _LANGUAGE_ASSEMBLY
#include <linux/linkage.h>
/* arch/rlx/bsp/serial.c */
extern void bsp_serial_init(void);
/* arch/rlx/bsp/time.c */
extern void bsp_timer_init(void);
extern void bsp_timer_ack(void);
/* arch/rlx/kernel/time.c */
extern int rlx_clockevent_init(int irq);
#endif
#endif
|