diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-01-09 15:25:28 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 15:25:28 -0200 |
commit | e18828e43a52fb9a792938840cc32cbb2a9e1a5c (patch) | |
tree | 8f85b0bf6254e3f936190cea65703cdcf91523ca /drivers/media/common | |
parent | 67f1570a0659abba5efbf55cc986187af61bdd52 (diff) | |
download | linux-e18828e43a52fb9a792938840cc32cbb2a9e1a5c.tar.gz linux-e18828e43a52fb9a792938840cc32cbb2a9e1a5c.tar.bz2 linux-e18828e43a52fb9a792938840cc32cbb2a9e1a5c.zip |
V4L/DVB (3179): Fix 64-bit compile warnings
- Fix 64-bit compile warnings
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/common')
-rw-r--r-- | drivers/media/common/saa7146_hlp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/saa7146_hlp.c b/drivers/media/common/saa7146_hlp.c index ec52dff8cb69..be34ec430470 100644 --- a/drivers/media/common/saa7146_hlp.c +++ b/drivers/media/common/saa7146_hlp.c @@ -562,7 +562,7 @@ static void saa7146_set_position(struct saa7146_dev *dev, int w_x, int w_y, int int b_depth = vv->ov_fmt->depth; int b_bpl = vv->ov_fb.fmt.bytesperline; - u32 base = (u32)vv->ov_fb.base; + u32 base = (u32)(unsigned long)vv->ov_fb.base; struct saa7146_video_dma vdma1; |