/* * Setup the right wbflush routine for Baget/MIPS. * * Copyright (C) 1999 Gleb Raiko & Vladimir Roganov */ #include #include 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) { }