Commit ea8df7e0 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (7542): em28xx: Fix some warnings

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent d7aa8020
...@@ -197,7 +197,7 @@ static void em28xx_copy_video(struct em28xx *dev, ...@@ -197,7 +197,7 @@ static void em28xx_copy_video(struct em28xx *dev,
lencopy = lencopy > remain ? remain : lencopy; lencopy = lencopy > remain ? remain : lencopy;
if((char*)startwrite + lencopy > (char*)outp + buf->vb.size) { if((char*)startwrite + lencopy > (char*)outp + buf->vb.size) {
em28xx_isocdbg("Overflow of %i bytes past buffer end (1)\n", em28xx_isocdbg("Overflow of %zi bytes past buffer end (1)\n",
((char*)startwrite + lencopy) - ((char*)outp + buf->vb.size)); ((char*)startwrite + lencopy) - ((char*)outp + buf->vb.size));
lencopy = remain = (char*)outp + buf->vb.size - (char*)startwrite; lencopy = remain = (char*)outp + buf->vb.size - (char*)startwrite;
} }
...@@ -217,7 +217,7 @@ static void em28xx_copy_video(struct em28xx *dev, ...@@ -217,7 +217,7 @@ static void em28xx_copy_video(struct em28xx *dev,
BUG_ON(lencopy <= 0); BUG_ON(lencopy <= 0);
if((char*)startwrite + lencopy > (char*)outp + buf->vb.size) { if((char*)startwrite + lencopy > (char*)outp + buf->vb.size) {
em28xx_isocdbg("Overflow of %i bytes past buffer end (2)\n", em28xx_isocdbg("Overflow of %zi bytes past buffer end (2)\n",
((char*)startwrite + lencopy) - ((char*)outp + buf->vb.size)); ((char*)startwrite + lencopy) - ((char*)outp + buf->vb.size));
lencopy = remain = (char*)outp + buf->vb.size - (char*)startwrite; lencopy = remain = (char*)outp + buf->vb.size - (char*)startwrite;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment