diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-10-21 20:11:25 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-19 13:01:20 -0500 |
commit | a455589f181e60439c736c6c6a068bb7e6dc23f0 (patch) | |
tree | 48d377e7db8d21fd606ba8c84a72b95f3d23c10b /drivers/misc/genwqe | |
parent | 41d28bca2da4bd75a8915c1ccf2cacf7f4a2e531 (diff) |
assorted conversions to %p[dD]
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/misc/genwqe')
-rw-r--r-- | drivers/misc/genwqe/card_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/genwqe/card_dev.c b/drivers/misc/genwqe/card_dev.c index 5918586f2f76..c49d244265ec 100644 --- a/drivers/misc/genwqe/card_dev.c +++ b/drivers/misc/genwqe/card_dev.c | |||
@@ -395,7 +395,7 @@ static void genwqe_vma_open(struct vm_area_struct *vma) | |||
395 | static void genwqe_vma_close(struct vm_area_struct *vma) | 395 | static void genwqe_vma_close(struct vm_area_struct *vma) |
396 | { | 396 | { |
397 | unsigned long vsize = vma->vm_end - vma->vm_start; | 397 | unsigned long vsize = vma->vm_end - vma->vm_start; |
398 | struct inode *inode = vma->vm_file->f_dentry->d_inode; | 398 | struct inode *inode = file_inode(vma->vm_file); |
399 | struct dma_mapping *dma_map; | 399 | struct dma_mapping *dma_map; |
400 | struct genwqe_dev *cd = container_of(inode->i_cdev, struct genwqe_dev, | 400 | struct genwqe_dev *cd = container_of(inode->i_cdev, struct genwqe_dev, |
401 | cdev_genwqe); | 401 | cdev_genwqe); |