标签: linux linux-kernel linux-device-driver embedded-linux
我想知道什么是平台驱动程序?平台驱动程序有什么用? 我想研究平台驱动程序,研究的起点是什么?
答案 0 :(得分:2)
平台驱动程序遵循标准驱动程序模型约定,其中 发现/枚举是在驱动程序和驱动程序之外处理的 提供probe()和remove()方法。他们支持电源管理 和使用标准约定的关闭通知。
probe()
remove()
Source