发布时间:2020-10-05 23:23:01
fs/fcntl.c SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg){struct file *filp;long err = -EBADF;filp = fget(fd);if (!filp)goto out;err = security_file_fcntl(filp, cmd, arg);if (err) {fput(filp);return err;}.........【阅读全文】
发布时间:2020-09-04 20:14:25
am8268 usb从机驱动udc笔记 drivers/usb/am7x/am7x_udc.c static int __init am7x_udc_probe(struct platform_device *pdev){ struct aotg_udc *udc ; int retval = 0; struct .........【阅读全文】
发布时间:2020-09-04 01:35:38
系统内核:linux 4.10<drivers/usb/host/isp116x-hcd.c>//见<arch/arm/mach-pxa/viper.c>static struct platform_device isp116x_devicestatic const char hcd_name[] = "isp116x-hcd";module_platform_driver(isp116x_driver);/* work with hotplug and coldplug */MODULE_ALIAS("platform:isp116x-hcd");static .........【阅读全文】
发布时间:2020-09-04 01:32:46
官方网站的驱动可能会更好http://www.wch.cn/download/CH341SER_LINUX_ZIP.htmlch340芯片兼容这个驱动。<drivers/usb/serial/ch341.c> module_usb_serial_driver(serial_drivers, id_table);///////////////////////////////////<include/linux/usb/serial.h>/* * module_usb_serial_driver() - Helper macr.........【阅读全文】
发布时间:2020-09-04 01:28:53
1. loop设备介绍 在类 UNIX 系统里,loop 设备是一种伪设备(pseudo-device),或者也可以说是仿真设备。它能使我们像块设备一样访问一个文件。在使用之前,一个 loop 设备必须要和一个文件进行连接。这种结合方式给用户提供了一个替代块特殊文件的接口。因此,如果这个文件包含有一个完整的文件系统,.........【阅读全文】