LinuxKPI: add simple_open() to fs.h

Add a dummy simple_open() to fs.h as we have for other
(unsupported) functions.
This is needed by a wireless driver.

(cherry picked from commit 41dee251ee)
This commit is contained in:
Bjoern A. Zeeb 2021-10-25 16:44:18 +00:00
parent 009e6b6e71
commit a6a1ab040f

View file

@ -245,6 +245,12 @@ nonseekable_open(struct inode *inode, struct file *filp)
return 0;
}
static inline int
simple_open(struct inode *inode, struct file *filp)
{
return 0;
}
extern unsigned int linux_iminor(struct inode *);
#define iminor(...) linux_iminor(__VA_ARGS__)