Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个平台设备/驱动程序 - 比如说 Pdriver1 和 Pdriver2。我想从 Pdriver2 访问 Pdriver1 的平台特定数据。我怎样才能做到这一点?
在模块中pdriver1,您应该注册外部符号EXPORT_SYMBOL以允许其他模块访问它。
pdriver1
EXPORT_SYMBOL
然后,您应该指定pdriver1为 的依赖项pdriver2,因此 modprobe 将pdriver1在 之前加载pdriver2。然后在pdriver2你可以访问导出的符号pdriver1。
pdriver2