我正在研究Linux内核中的驱动程序内核模块,通常通过探测函数调用request_irq()。驱动程序/net/以太网/natsemi/ one 83820.ko可以是这样的例子。链接:https://elixir.bootlin.com/linux/latest/source/kernel/irq/manage.c#L1984
这意味着可以在探测完成之前调用处理程序。但我在许多驱动程序中注意到,对于可以
我有一个raspberry pi b+,希望通过这个驱动程序bcm2835_thermal.c https://github.com/raspberrypi/linux/blob/rpi-4.19.y/drivers/thermal/broadcom/bcm2835_thermal.c读取Linux内核文件中的CPU温度。我应该在Linux文件中调用探测函数和get_temp函数吗?
任何