aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/ttpci/av7110.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/dvb/ttpci/av7110.c')
-rw-r--r--drivers/media/dvb/ttpci/av7110.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/ttpci/av7110.c b/drivers/media/dvb/ttpci/av7110.c
index 8178832d14a8..8b8144f77a73 100644
--- a/drivers/media/dvb/ttpci/av7110.c
+++ b/drivers/media/dvb/ttpci/av7110.c
@@ -40,7 +40,6 @@
40#include <linux/smp_lock.h> 40#include <linux/smp_lock.h>
41 41
42#include <linux/kernel.h> 42#include <linux/kernel.h>
43#include <linux/moduleparam.h>
44#include <linux/sched.h> 43#include <linux/sched.h>
45#include <linux/types.h> 44#include <linux/types.h>
46#include <linux/fcntl.h> 45#include <linux/fcntl.h>
@@ -1543,7 +1542,7 @@ static int get_firmware(struct av7110* av7110)
1543 } 1542 }
1544 1543
1545 /* check if the firmware is available */ 1544 /* check if the firmware is available */
1546 av7110->bin_fw = (unsigned char *) vmalloc(fw->size); 1545 av7110->bin_fw = vmalloc(fw->size);
1547 if (NULL == av7110->bin_fw) { 1546 if (NULL == av7110->bin_fw) {
1548 dprintk(1, "out of memory\n"); 1547 dprintk(1, "out of memory\n");
1549 release_firmware(fw); 1548 release_firmware(fw);