int (*probe)(struct platform_device *);

这是声明了一个函数指针probe,它的参数是一个platform_device类的指针,返回值是int。
比如说我们声明了一个函数int func(struct platform_device *),那么可以令probe = func,对func()调用可以用probe()代替。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2021-12-07
  • 2021-12-23
  • 2022-12-23
相关资源
相似解决方案