*参照元 [#r1787cdb] #backlinks *説明 [#w7fb6186] -パス: [[linux-4.4.1/include/linux/platform_device.h]] -FIXME: これは何? --説明 **引数 [#a91ac122] -__platform_driver -- --ドライバの定義。 --struct platform_driver 型の変数を指定する。 --[[linux-4.4.1/platform_driver]] **返り値 [#b715860f] -なし、関数では無い **参考 [#e9ced9a0] *実装 [#sbf605ef] /* module_platform_driver() - Helper macro for drivers that don't do * anything special in module init/exit. This eliminates a lot of * boilerplate. Each module may only use this macro once, and * calling it replaces module_init() and module_exit() */ #define module_platform_driver(__platform_driver) \ module_driver(__platform_driver, platform_driver_register, \ platform_driver_unregister) - --[[linux-4.4.1/module_driver()]] --[[linux-4.4.1/platform_driver_register()]] --[[linux-4.4.1/platform_driver_unregister()]] *コメント [#ca9ebf41]