Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 65801
b: refs/heads/master
c: d9bf2c0
h: refs/heads/master
i:
  65799: fd22578
v: v3
  • Loading branch information
Jesper Juhl authored and Mauro Carvalho Chehab committed Oct 10, 2007
1 parent a8ee1f8 commit 9192533
Show file tree
Hide file tree
Showing 3 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: 71be258bd9bf41ca3060021f2ed50ad8c672a01e
refs/heads/master: d9bf2c037754f1493323829048d6210602712a43
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/ttpci/av7110.c
Original file line number Diff line number Diff line change
Expand Up @@ -1542,7 +1542,7 @@ static int get_firmware(struct av7110* av7110)
}

/* check if the firmware is available */
av7110->bin_fw = (unsigned char *) vmalloc(fw->size);
av7110->bin_fw = vmalloc(fw->size);
if (NULL == av7110->bin_fw) {
dprintk(1, "out of memory\n");
release_firmware(fw);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/ttpci/av7110_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ static int av7110_ir_write_proc(struct file *file, const char __user *buffer,
if (count < size)
return -EINVAL;

page = (char *) vmalloc(size);
page = vmalloc(size);
if (!page)
return -ENOMEM;

Expand Down

0 comments on commit 9192533

Please sign in to comment.