mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
[PATCH] Fix zoran_card compilation warning
Fix the following warning which was introduced in 2.6.15-git8 by
commit 7408187d22
:
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>
This commit is contained in:
parent
fc03da1ca1
commit
69ff56c166
@ -995,7 +995,7 @@ test_interrupts (struct zoran *zr)
|
||||
static int __devinit
|
||||
zr36057_init (struct zoran *zr)
|
||||
{
|
||||
unsigned long mem;
|
||||
u32 *mem;
|
||||
void *vdev;
|
||||
unsigned mem_needed;
|
||||
int j;
|
||||
@ -1058,10 +1058,10 @@ zr36057_init (struct zoran *zr)
|
||||
"%s: zr36057_init() - kmalloc (STAT_COM) failed\n",
|
||||
ZR_DEVNAME(zr));
|
||||
kfree(vdev);
|
||||
kfree((void *)mem);
|
||||
kfree(mem);
|
||||
return -ENOMEM;
|
||||
}
|
||||
zr->stat_com = (u32 *) mem;
|
||||
zr->stat_com = mem;
|
||||
for (j = 0; j < BUZ_NUM_STAT_COM; j++) {
|
||||
zr->stat_com[j] = 1; /* mark as unavailable to zr36057 */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user