GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / include / asm / wbflush.h
blobeadc0ac47e2448d2c1bef79798f918404278fdc4
1 /*
2 * Header file for using the wbflush routine
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (c) 1998 Harald Koerfgen
9 * Copyright (C) 2002 Maciej W. Rozycki
11 #ifndef _ASM_WBFLUSH_H
12 #define _ASM_WBFLUSH_H
15 #ifdef CONFIG_CPU_HAS_WB
17 extern void (*__wbflush)(void);
18 extern void wbflush_setup(void);
20 #define wbflush() \
21 do { \
22 __sync(); \
23 __wbflush(); \
24 } while (0)
26 #else /* !CONFIG_CPU_HAS_WB */
28 #define wbflush_setup() do { } while (0)
30 #define wbflush() fast_iob()
32 #endif /* !CONFIG_CPU_HAS_WB */
34 #endif /* _ASM_WBFLUSH_H */