.release = iio_chrdev_release,
 };
 
+static const struct file_operations iio_event_fileops = {
+       .owner = THIS_MODULE,
+       .llseek = noop_llseek,
+       .unlocked_ioctl = iio_ioctl,
+       .compat_ioctl = compat_ptr_ioctl,
+       .open = iio_chrdev_open,
+       .release = iio_chrdev_release,
+};
+
 static int iio_check_unique_scan_index(struct iio_dev *indio_dev)
 {
        int i, j;
 
 int __iio_device_register(struct iio_dev *indio_dev, struct module *this_mod)
 {
+       struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
        const char *label;
        int ret;
 
        if (ret < 0)
                return ret;
 
-       /* configure elements for the chrdev */
-       indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
-
        iio_device_register_debugfs(indio_dev);
 
        ret = iio_buffer_alloc_sysfs_and_mask(indio_dev);
                indio_dev->setup_ops == NULL)
                indio_dev->setup_ops = &noop_ring_setup_ops;
 
-       cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
+       if (indio_dev->buffer)
+               cdev_init(&indio_dev->chrdev, &iio_buffer_fileops);
+       else if (iio_dev_opaque->event_interface)
+               cdev_init(&indio_dev->chrdev, &iio_event_fileops);
 
-       indio_dev->chrdev.owner = this_mod;
+       if (indio_dev->buffer || iio_dev_opaque->event_interface) {
+               indio_dev->dev.devt = MKDEV(MAJOR(iio_devt), indio_dev->id);
+               indio_dev->chrdev.owner = this_mod;
+       }
 
        ret = cdev_device_add(&indio_dev->chrdev, &indio_dev->dev);
        if (ret < 0)