Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205834
b: refs/heads/master
c: 764f2ca
h: refs/heads/master
v: v3
  • Loading branch information
Kulikov Vasiliy authored and Greg Kroah-Hartman committed Jul 8, 2010
1 parent f4dfbef commit 126c9b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 440a65475d9bf0997c28feb206a16ddd87122e22
refs/heads/master: 764f2ca6e4f7b8d8ce0867c154db42e98a83521e
4 changes: 2 additions & 2 deletions trunk/drivers/staging/crystalhd/crystalhd_lnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ static long chd_dec_ioctl(struct file *fd, unsigned int cmd, unsigned long ua)
return -EINVAL;
}

uc = (struct crystalhd_user *)fd->private_data;
uc = fd->private_data;
if (!uc) {
BCMLOG_ERR("Failed to get uc\n");
return -ENODATA;
Expand Down Expand Up @@ -332,7 +332,7 @@ static int chd_dec_close(struct inode *in, struct file *fd)
return -EINVAL;
}

uc = (struct crystalhd_user *)fd->private_data;
uc = fd->private_data;
if (!uc) {
BCMLOG_ERR("Failed to get uc\n");
return -ENODATA;
Expand Down

0 comments on commit 126c9b9

Please sign in to comment.