gowhere 发表于 2016-1-20 10:15:13

关于spi ioctr函数问题,求教

现象:
我在spi驱动中的 file_operations s中有如下定义:

static const struct file_operations spidev_fops = {
        .owner =        THIS_MODULE,
        /* REVISIT switch to aio primitives, so that userspace
       * gets more complete API coverage.It'll simplify things
       * too, except for the locking.
       */
        .write =        spidev_write,
        .read =                spidev_read,
        .unlocked_ioctl = spidev_ioctl,
        .compat_ioctl = spidev_compat_ioctl,
        .open =                spidev_open,
        .release =        spidev_release,
        .llseek =        no_llseek,
};

应用程序中调用:

compat_ioctl(handle_spi1dev, SPI_IOC_WR_BITS_PER_WORD,&cmd)


在编译时出现: linux/spi/spi.h:没有那个文件或目录?


请问,我如何才能调用驱动中定义的compat_ioctl?

暴走的阿Sai 发表于 2016-1-20 10:20:34

看看在kernel/linux/spi/spi.h有没有,这个函数。或者使用grep来找函数,然后把找到这个函数的头文件加进去试试

qingfeng623 发表于 2016-5-10 16:32:23

你的spidev_write,在用户空间调用的时候,有没有出现问题?

qingfeng623 发表于 2016-5-10 16:33:04

你的spidev_write,在用户空间调用的时候,有没有出现问题?你用spi来作什么的?
页: [1]
查看完整版本: 关于spi ioctr函数问题,求教