没有这样的设备或地址 - Linux设备驱动程序开发

时间:2017-05-24 17:37:55

标签: linux-device-driver kernel-module

当我尝试cat /dev/gpio-reflect时,我收到错误: No such device or address

cat proc/devices使用正确的主号码列出我的驱动程序。

dmesg从init和exit函数打印日志。

我还在/ dev下创建了相应的文件(主要是正确的)。

cdev_addalloc_chrdev_region不会返回错误代码。

我不知道我做错了什么。请帮我。

static struct file_operations fops = {
.owner = THIS_MODULE,
.read = device_read,
.write = device_write,
.open = device_open,
.release = device_release
};


static int __init gpio_reflect_init(void)
{

int err,res=alloc_chrdev_region(&dev, 0, 1, dname);
classptr = class_create(THIS_MODULE, "socledclass");
device_create(classptr, NULL, MAJOR(dev), NULL, dname);
cdev_init(&c_dev, &fops);
c_dev.ops=&fops;
c_dev.owner=THIS_MODULE;
err=cdev_add(&c_dev, MAJOR(dev), 1);

if(err){
    printk(KERN_INFO "Could not add device");
}

if(res<0){
    printk(KERN_INFO "Could not alloc device");
    return res;
}else{
    printk(KERN_INFO "Major: %i",MAJOR(dev));
}
printk(KERN_INFO "Input Pin is: %i\n",in);
printk(KERN_INFO "Output Pin is: %i\n",out);


return 0;
}

static void __exit gpio_reflect_cleanup(void)
{
cdev_del(&c_dev);
unregister_chrdev_region(dev,1);
printk(KERN_INFO "%s unloaded\n",dname);

}

static int device_open(struct inode *inode, struct file *file)
{
printk(KERN_INFO "open\n");
if (Device_Open)
    return -EBUSY;

Device_Open++;
sprintf(msg, "Hello\n");
msg_Ptr = msg;
try_module_get(THIS_MODULE);

return SUCCESS;
}

static int device_release(struct inode *inode, struct file *file)
{
printk(KERN_INFO "release\n");
Device_Open--;

module_put(THIS_MODULE);

return SUCCESS;
}

 static ssize_t device_read(struct file *filp, char *buffer,size_t length,  loff_t * offset){
int bytes_read = 0;
printk(KERN_INFO "read\n");

if (*msg_Ptr == 0)
    return 0;
while (length && *msg_Ptr) {
    put_user(*(msg_Ptr++), buffer++);

    length--;
    bytes_read++;
}
return bytes_read;
}


static ssize_t
device_write(struct file *filp, const char *buff, size_t len, loff_t *       off)
{
printk(KERN_INFO "write\n");
printk(KERN_ALERT "Sorry, this operation isn't supported.\n");
return -EINVAL;
}

module_init(gpio_reflect_init);
module_exit(gpio_reflect_cleanup);

对于格式错误的代码感到抱歉:)

2 个答案:

答案 0 :(得分:2)

如果有人遇到同样的问题。 这只是一个愚蠢的错误。

错误:for

右:cdev_add(&c_dev, MAJOR(dev), 1);

答案 1 :(得分:0)

如果/dev/gpio-reflect下的设备节点为cat /dev/gpio-reflect,请尝试Sheets("Archive").Range(Cells(2, x), Cells(100, x)).Value = Sheets("Main").Range("H2:H100").Value