blob: 3a0b8b8b3935b86319887d14c0b50aee34a88a04 (
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
34
|
/*
* Header file for using the wbflush routine
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (c) 1998 Harald Koerfgen
*
* $Id: wbflush.h,v 1.1 1999/07/26 19:46:00 harald Exp $
*/
#ifndef __ASM_MIPS_WBFLUSH_H
#define __ASM_MIPS_WBFLUSH_H
#include <linux/config.h>
#if defined(CONFIG_CPU_HAS_WB)
/*
* R2000 or R3000
*/
extern void (*__wbflush) (void);
#define wbflush() __wbflush()
#else
/*
* we don't need no stinkin' wbflush
*/
#define wbflush()
#endif
#endif /* __ASM_MIPS_WBFLUSH_H */
|