Why is the probe function in my kernel module not being called?
问题 While following, among others, this tutorial ([http://tali.admingilde.org/linux-docbook/writing_usb_driver.pdf][1]) and reading certain chapters in the linux device drivers book, I cannot get the pr_debug statements in the probe function to show any output in dmesg. Here's my code: #include <linux/module.h> /*included for all kernel modules*/ #include <linux/kernel.h> /*included for KERN_DEBUG*/ #include <linux/init.h> /*included for __init and __exit macros*/ #include <linux/usb.h> #include