浏览代码

Use only the header files that we need

tags/v0.9.3
Michael Brown 20 年前
父节点
当前提交
03346742c0
共有 6 个文件被更改,包括 10 次插入6 次删除
  1. 1
    1
      src/drivers/bus/eisa.c
  2. 1
    1
      src/drivers/bus/isa.c
  3. 3
    1
      src/drivers/bus/isa_ids.c
  4. 1
    1
      src/drivers/bus/isapnp.c
  5. 1
    1
      src/drivers/bus/mca.c
  6. 3
    1
      src/drivers/bus/pci.c

+ 1
- 1
src/drivers/bus/eisa.c 查看文件

1
-#include "etherboot.h"
1
+#include "string.h"
2
 #include "io.h"
2
 #include "io.h"
3
 #include "timer.h"
3
 #include "timer.h"
4
 #include "eisa.h"
4
 #include "eisa.h"

+ 1
- 1
src/drivers/bus/isa.c 查看文件

1
-#include "etherboot.h"
1
+#include "string.h"
2
 #include "isa.h"
2
 #include "isa.h"
3
 
3
 
4
 /*
4
 /*

+ 3
- 1
src/drivers/bus/isa_ids.c 查看文件

1
-#include "etherboot.h"
1
+#include "stdint.h"
2
+#include "byteswap.h"
3
+#include "console.h"
2
 #include "isa_ids.h"
4
 #include "isa_ids.h"
3
 
5
 
4
 /* 
6
 /* 

+ 1
- 1
src/drivers/bus/isapnp.c 查看文件

33
 *
33
 *
34
 ***************************************************************************/
34
 ***************************************************************************/
35
 
35
 
36
-#include "etherboot.h"
36
+#include "string.h"
37
 #include "timer.h"
37
 #include "timer.h"
38
 #include "io.h"
38
 #include "io.h"
39
 #include "isapnp.h"
39
 #include "isapnp.h"

+ 1
- 1
src/drivers/bus/mca.c 查看文件

5
  *
5
  *
6
  */
6
  */
7
 
7
 
8
-#include "etherboot.h"
8
+#include "string.h"
9
 #include "io.h"
9
 #include "io.h"
10
 #include "mca.h"
10
 #include "mca.h"
11
 
11
 

+ 3
- 1
src/drivers/bus/pci.c 查看文件

1
-#include "etherboot.h"
1
+#include "stdint.h"
2
+#include "string.h"
3
+#include "console.h"
2
 #include "pci.h"
4
 #include "pci.h"
3
 
5
 
4
 /*
6
 /*

正在加载...
取消
保存