summaryrefslogtreecommitdiffstats
path: root/arch/mips/baget/wbflush.c
blob: 64c60bc7100f47eda512141c58e959787b707b69 (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
/*
 * Setup the right wbflush routine for Baget/MIPS.
 *
 * Copyright (C) 1999 Gleb Raiko & Vladimir Roganov
 */

#include <linux/init.h>
#include <asm/bootinfo.h>

void (*__wbflush) (void);

static void wbflush_baget(void);

void __init wbflush_setup(void)
{
	__wbflush = wbflush_baget;
}

/*
 * Baget/MIPS doesnt need to write back the WB.
 */
static void wbflush_baget(void)
{
}