mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-14 16:44:29 +08:00
fbdev: pxa3xx-gcu: remove redundant implementation of open()
the miscdevice core now does the work in any case. Signed-off-by: Martin Kepplinger <martink@posteo.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
32eca22180
commit
2bfeeca107
@ -373,15 +373,6 @@ static inline struct pxa3xx_gcu_priv *to_pxa3xx_gcu_priv(struct file *file)
|
|||||||
return container_of(dev, struct pxa3xx_gcu_priv, misc_dev);
|
return container_of(dev, struct pxa3xx_gcu_priv, misc_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* provide an empty .open callback, so the core sets file->private_data
|
|
||||||
* for us.
|
|
||||||
*/
|
|
||||||
static int pxa3xx_gcu_open(struct inode *inode, struct file *file)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static ssize_t
|
static ssize_t
|
||||||
pxa3xx_gcu_write(struct file *file, const char *buff,
|
pxa3xx_gcu_write(struct file *file, const char *buff,
|
||||||
size_t count, loff_t *offp)
|
size_t count, loff_t *offp)
|
||||||
@ -580,7 +571,6 @@ pxa3xx_gcu_free_buffers(struct device *dev,
|
|||||||
|
|
||||||
static const struct file_operations pxa3xx_gcu_miscdev_fops = {
|
static const struct file_operations pxa3xx_gcu_miscdev_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = pxa3xx_gcu_open,
|
|
||||||
.write = pxa3xx_gcu_write,
|
.write = pxa3xx_gcu_write,
|
||||||
.unlocked_ioctl = pxa3xx_gcu_ioctl,
|
.unlocked_ioctl = pxa3xx_gcu_ioctl,
|
||||||
.mmap = pxa3xx_gcu_mmap,
|
.mmap = pxa3xx_gcu_mmap,
|
||||||
|
Loading…
Reference in New Issue
Block a user