|
@@ -572,7 +572,7 @@ static ssize_t
|
|
|
fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
|
|
|
{
|
|
|
unsigned long p = *ppos;
|
|
|
- struct inode *inode = file->f_dentry->d_inode;
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
|
int fbidx = iminor(inode);
|
|
|
struct fb_info *info = registered_fb[fbidx];
|
|
|
u32 *buffer, *dst;
|
|
@@ -647,7 +647,7 @@ static ssize_t
|
|
|
fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
|
|
|
{
|
|
|
unsigned long p = *ppos;
|
|
|
- struct inode *inode = file->f_dentry->d_inode;
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
|
int fbidx = iminor(inode);
|
|
|
struct fb_info *info = registered_fb[fbidx];
|
|
|
u32 *buffer, *src;
|
|
@@ -1081,7 +1081,7 @@ static int fb_get_fscreeninfo(struct inode *inode, struct file *file,
|
|
|
static long
|
|
|
fb_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
{
|
|
|
- struct inode *inode = file->f_dentry->d_inode;
|
|
|
+ struct inode *inode = file->f_path.dentry->d_inode;
|
|
|
int fbidx = iminor(inode);
|
|
|
struct fb_info *info = registered_fb[fbidx];
|
|
|
struct fb_ops *fb = info->fbops;
|
|
@@ -1121,7 +1121,7 @@ fb_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
static int
|
|
|
fb_mmap(struct file *file, struct vm_area_struct * vma)
|
|
|
{
|
|
|
- int fbidx = iminor(file->f_dentry->d_inode);
|
|
|
+ int fbidx = iminor(file->f_path.dentry->d_inode);
|
|
|
struct fb_info *info = registered_fb[fbidx];
|
|
|
struct fb_ops *fb = info->fbops;
|
|
|
unsigned long off;
|