initbuses.h
上传用户:qddsws
上传日期:2022-06-22
资源大小:723k
文件大小:0k
源码类别:

操作系统开发

开发平台:

C/C++

  1. #ifndef INITBUSES_H
  2. #define INITBUSES_H
  3. #include <devices.h>
  4. #include <system_bus.h>
  5. #include <pci.h>
  6. #include <init.h>
  7. #include <isa.h>
  8. void register_bus ( struct bus_driver *newbus);
  9. void unregister_bus (struct bus_driver *newbus);
  10. void init_buses ();
  11. struct device* find_dev_in_bus(char* bus_name, char* dev_name, struct device* p_dev);
  12. struct bus_driver* ret_root_bus ();
  13. #endif