写一个Linux的USB驱动
时间: 2023-03-11 09:06:39 浏览: 146
给自己的Linux写驱动
我可以提供一个简单的Linux USB驱动的示例代码:
#include <linux/module.h>
#include <linux/usb.h>static int usb_probe(struct usb_interface *interface, const struct usb_device_id *id)
{
// Do something
return 0;
}static void usb_disconnect(struct usb_interface *interface)
{
// Do something
}static struct usb_device_id usb_table[] = {
{ USB_DEVICE(0x1234, 0x5678) },
{ USB_DEVICE(0xABCD, 0xEF01) },
{ }
};MODULE_DEVICE_TABLE (usb, usb_table);static struct usb_driver usb_driver = {
.name = "usb_driver",
.probe = usb_probe,
.disconnect = usb_disconnect,
.id_table = usb_table,
};module_usb_driver(usb_driver);
MODULE_LICENSE("GPL");
阅读全文