blob: 2203fa2a5b882086908984b81ef2d0d05c04974a (
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
|
/* Support for FIQ on ARM architectures.
* Written by Philip Blundell <philb@gnu.org>, 1998
*/
#ifndef __ASM_FIQ_H
#define __ASM_FIQ_H
struct fiq_handler {
const char *name;
int (*callback)(void);
};
extern int claim_fiq(struct fiq_handler *f);
extern void release_fiq(struct fiq_handler *f);
#endif
/* Support for FIQ on ARM architectures.
* Written by Philip Blundell <philb@gnu.org>, 1998
*/
#ifndef __ASM_FIQ_H
#define __ASM_FIQ_H
struct fiq_handler {
const char *name;
int (*callback)(void);
};
extern int claim_fiq(struct fiq_handler *f);
extern void release_fiq(struct fiq_handler *f);
#endif
|