Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
/*
 * 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)
{
}