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) { } |