V4L/DVB (10914): v4l2: fix compile warnings when printing u64 value.
[deliverable/linux.git] / drivers / media / video / adv7175.c
index 709e044f007dd4f07cd1194f05c85a020bbe226e..ff12103032952c058178166f1c631d9dc38572a0 100644 (file)
@@ -228,10 +228,11 @@ static int adv7175_s_std_output(struct v4l2_subdev *sd, v4l2_std_id std)
                adv7175_write(sd, 0x07, TR0MODE | TR0RST);
                adv7175_write(sd, 0x07, TR0MODE);
        } else {
-               v4l2_dbg(1, debug, sd, "illegal norm: %llx\n", std);
+               v4l2_dbg(1, debug, sd, "illegal norm: %llx\n",
+                               (unsigned long long)std);
                return -EINVAL;
        }
-       v4l2_dbg(1, debug, sd, "switched to %llx\n", std);
+       v4l2_dbg(1, debug, sd, "switched to %llx\n", (unsigned long long)std);
        encoder->norm = std;
        return 0;
 }
This page took 0.025501 seconds and 5 git commands to generate.