aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ieee1394/video1394.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-07-12 16:50:00 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2010-07-13 03:59:32 -0400
commit80792d182e43bee89fce509e64fdea27e600530f (patch)
tree058b752acfb8089f8ff000ffecc5842c20996b84 /drivers/ieee1394/video1394.c
parent02d37bed188c500ee7afb0a2dc6b65a80704c58e (diff)
ieee1394: Remove unnecessary casts of private_data
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394/video1394.c')
-rw-r--r--drivers/ieee1394/video1394.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ieee1394/video1394.c b/drivers/ieee1394/video1394.c
index a77483befcda..5c74f796d7f1 100644
--- a/drivers/ieee1394/video1394.c
+++ b/drivers/ieee1394/video1394.c
@@ -720,7 +720,7 @@ static inline unsigned video1394_buffer_state(struct dma_iso_ctx *d,
720static long video1394_ioctl(struct file *file, 720static long video1394_ioctl(struct file *file,
721 unsigned int cmd, unsigned long arg) 721 unsigned int cmd, unsigned long arg)
722{ 722{
723 struct file_ctx *ctx = (struct file_ctx *)file->private_data; 723 struct file_ctx *ctx = file->private_data;
724 struct ti_ohci *ohci = ctx->ohci; 724 struct ti_ohci *ohci = ctx->ohci;
725 unsigned long flags; 725 unsigned long flags;
726 void __user *argp = (void __user *)arg; 726 void __user *argp = (void __user *)arg;
@@ -1172,7 +1172,7 @@ static long video1394_ioctl(struct file *file,
1172 1172
1173static int video1394_mmap(struct file *file, struct vm_area_struct *vma) 1173static int video1394_mmap(struct file *file, struct vm_area_struct *vma)
1174{ 1174{
1175 struct file_ctx *ctx = (struct file_ctx *)file->private_data; 1175 struct file_ctx *ctx = file->private_data;
1176 1176
1177 if (ctx->current_ctx == NULL) { 1177 if (ctx->current_ctx == NULL) {
1178 PRINT(KERN_ERR, ctx->ohci->host->id, 1178 PRINT(KERN_ERR, ctx->ohci->host->id,
@@ -1239,7 +1239,7 @@ static int video1394_open(struct inode *inode, struct file *file)
1239 1239
1240static int video1394_release(struct inode *inode, struct file *file) 1240static int video1394_release(struct inode *inode, struct file *file)
1241{ 1241{
1242 struct file_ctx *ctx = (struct file_ctx *)file->private_data; 1242 struct file_ctx *ctx = file->private_data;
1243 struct ti_ohci *ohci = ctx->ohci; 1243 struct ti_ohci *ohci = ctx->ohci;
1244 struct list_head *lh, *next; 1244 struct list_head *lh, *next;
1245 u64 mask; 1245 u64 mask;