1 /* $Id$
2 *
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
5 * for more details.
6 *
7 * Copyright (c) 1997, 1999 by Ralf Baechle
8 */
9 #ifndef _ASM_BCACHE_H
10 #define _ASM_BCACHE_H
11
12 struct bcache_ops {
13 void (*bc_enable)(void);
14 void (*bc_disable)(void);
15 void (*bc_wback_inv)(unsigned long page, unsigned long size);
16 void (*bc_inv)(unsigned long page, unsigned long size);
17 };
18
19 extern void indy_sc_init(void);
20 extern void sni_pcimt_sc_init(void);
21
22 extern struct bcache_ops *bcops;
23
24 #endif /* _ASM_BCACHE_H */
25
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.