最終更新:2014-05-28 (水) 07:43:12 (3621d)  

platform_driver_probe
Top / platform_driver_probe

register driver for non-hotpluggable device

引数

コールバック関数の例

呼び出し

呼び出し元

メモ

  • Use this instead of platform_driver_register() when you know the device is not hotpluggable and has already been registered, and you want to remove its run-once probe() infrastructure from memory after the driver has bound to the device.

メモ2

  • When the hardware is not hot pluggable and needs detection during the booting of the kernel, you must use the platform_driver_probe method. This method is ideal for platform drivers, which are for controllers integrated with the platform hardware. This method works similarly to the platform_driver_register, except hardware is not probed when another device is connected after the kernel bootup.