- 论坛徽章:
- 0
|
我是2.4内核,移植到开发板上,驱动形式如下:
————————————————————————————————
static struct file_operations spi_drv_fops =
{
ioctl: spi_drv_ioctl,
open: spi_drv_open,
release: spi_drv_release,
read: spi_drv_read,
};
static void __exit spi_drv_cleanup(void)
{
int ret;
ret = unregister_chrdev(major, NAME);
if (ret < 0)
printk("Error in module_unregister_chrdev: %d\n", ret);
}
module_init(spi_drv_init);
module_exit(spi_drv_cleanup);
————————————————————————————————
打开用的是fd = open("/dev/SPI_DRV",...), 想关闭该设备。原本我调用close(fd)发现根本关不掉。再次打开该设备时,总是说fd = -1, 设备使用中。请教! |
|