免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2528 | 回复: 5
打印 上一主题 下一主题

early_read_config_byte 在哪里定义的? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-10-11 18:26 |只看该作者 |倒序浏览
linux 源代码中PCI总线驱动中的常用的功能函数 early_read_config_byte()原形在哪个源文件里定义的?整个代码树查找了一遍也没找到。

论坛徽章:
0
2 [报告]
发表于 2004-10-11 19:22 |只看该作者

early_read_config_byte 在哪里定义的?

什么版本,什么体系?

2.4  在 include/asm-ppc/pci-bridge.h 中,x86 好象没有这个东西。

论坛徽章:
0
3 [报告]
发表于 2004-10-12 09:54 |只看该作者

early_read_config_byte 在哪里定义的?

Linux-2.4.20, PowerPC,声明有两个地方,但原形没找到。

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2004-10-12 09:57 |只看该作者

early_read_config_byte 在哪里定义的?

用 grep 吧!

论坛徽章:
0
5 [报告]
发表于 2004-10-12 10:13 |只看该作者

early_read_config_byte 在哪里定义的?


  1. #define EARLY_PCI_OP(rw, size, type)                                    \
  2. int early_##rw##_config_##size(struct pci_controller *hose, int bus,    \
  3.                                int devfn, int offset, type value)       \
  4. {                                                                       \
  5.         return pci_##rw##_config_##size(fake_pci_dev(hose, bus, devfn), \
  6.                                         offset, value);                 \
  7. }

  8. EARLY_PCI_OP(read, byte, u8 *)
  9. EARLY_PCI_OP(read, word, u16 *)
  10. EARLY_PCI_OP(read, dword, u32 *)
  11. EARLY_PCI_OP(write, byte, u8)
  12. EARLY_PCI_OP(write, word, u16)
  13. EARLY_PCI_OP(write, dword, u32)
复制代码


/usr/src/linux-2.4.20-8d/arch/ppc/kernel/pci.c

论坛徽章:
0
6 [报告]
发表于 2004-10-12 12:31 |只看该作者

early_read_config_byte 在哪里定义的?

谢了,只想着用GREP查了:)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP