wbflush.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Setup the right wbflush routine for Baget/MIPS.
  3.  *
  4.  * Copyright (C) 1999 Gleb Raiko & Vladimir Roganov
  5.  */
  6. #include <linux/init.h>
  7. #include <asm/bootinfo.h>
  8. void (*__wbflush) (void);
  9. static void wbflush_baget(void);
  10. void __init wbflush_setup(void)
  11. {
  12. __wbflush = wbflush_baget;
  13. }
  14. /*
  15.  * Baget/MIPS doesnt need to write back the WB.
  16.  */
  17. static void wbflush_baget(void)
  18. {
  19. }