VCOM Linux Driver
Advantech Inc.
Loading...
Searching...
No Matches
adv_proc_fops.h
Go to the documentation of this file.
1#ifndef _ADV_PROC_FOPS_H
2#define _ADV_PROC_FOPS_H
3#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
4//@ current
5#else
6static const struct file_operations adv_proc_fops = {
7 .owner = THIS_MODULE,
8 .open = adv_proc_open,
9 .release = adv_proc_release,
10 .mmap = adv_proc_mmap,
11 .unlocked_ioctl = adv_proc_ioctl,
12 .poll = adv_proc_poll,
13};
14#endif
15
16#endif
int adv_proc_mmap(struct file *filp, struct vm_area_struct *vma)
Definition adv_mmap.c:78
int adv_proc_open(struct inode *inode, struct file *filp)