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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * SBus helper functions
  3.  *
  4.  * Sun3 don't have a sbus, but many of the used devices are also
  5.  * used on Sparc machines with sbus. To avoid having a lot of
  6.  * duplicate code, we provide necessary glue stuff to make using
  7.  * of the sbus driver code possible.
  8.  *
  9.  * (C) 1999 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
  10.  */
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. extern void rs_init(void);
  14. void __init sbus_init(void)
  15. {
  16. #ifdef CONFIG_SUN3X_ZS
  17. rs_init();
  18. #endif
  19. }
  20. void *sparc_alloc_io (u32 address, void *virtual, int len, char *name,
  21.                       u32 bus_type, int rdonly)
  22. {
  23. return (void *)address;
  24. }