aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/zoran_card.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2006-01-15 07:13:13 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-15 13:09:35 -0500
commit69ff56c166629224e9fe914b8543021dc2f001f0 (patch)
tree89ac4a4f144dd6b131a5400fe024881c347e2cce /drivers/media/video/zoran_card.c
parentfc03da1ca1954f103ed57daf90611cefa57b07e0 (diff)
[PATCH] Fix zoran_card compilation warning
Fix the following warning which was introduced in 2.6.15-git8 by commit 7408187d223f63d46a13b6a35b8f96b032c2f623: CC [M] drivers/media/video/zoran_card.o drivers/media/video/zoran_card.c: In function `zr36057_init': drivers/media/video/zoran_card.c:1053: warning: assignment makes integer from pointer without a cast Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Ronald S. Bultje <rbultje@ronald.bitfreak.net> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/zoran_card.c')
-rw-r--r--drivers/media/video/zoran_card.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/zoran_card.c b/drivers/media/video/zoran_card.c
index ea3288661a34..246e67cd8b51 100644
--- a/drivers/media/video/zoran_card.c
+++ b/drivers/media/video/zoran_card.c
@@ -995,7 +995,7 @@ test_interrupts (struct zoran *zr)
995static int __devinit 995static int __devinit
996zr36057_init (struct zoran *zr) 996zr36057_init (struct zoran *zr)
997{ 997{
998 unsigned long mem; 998 u32 *mem;
999 void *vdev; 999 void *vdev;
1000 unsigned mem_needed; 1000 unsigned mem_needed;
1001 int j; 1001 int j;
@@ -1058,10 +1058,10 @@ zr36057_init (struct zoran *zr)
1058 "%s: zr36057_init() - kmalloc (STAT_COM) failed\n", 1058 "%s: zr36057_init() - kmalloc (STAT_COM) failed\n",
1059 ZR_DEVNAME(zr)); 1059 ZR_DEVNAME(zr));
1060 kfree(vdev); 1060 kfree(vdev);
1061 kfree((void *)mem); 1061 kfree(mem);
1062 return -ENOMEM; 1062 return -ENOMEM;
1063 } 1063 }
1064 zr->stat_com = (u32 *) mem; 1064 zr->stat_com = mem;
1065 for (j = 0; j < BUZ_NUM_STAT_COM; j++) { 1065 for (j = 0; j < BUZ_NUM_STAT_COM; j++) {
1066 zr->stat_com[j] = 1; /* mark as unavailable to zr36057 */ 1066 zr->stat_com[j] = 1; /* mark as unavailable to zr36057 */
1067 } 1067 }