diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-25 15:53:38 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-04-02 04:55:02 -0300 |
commit | 4ae5c2e5e627ff22815fb9900161bf188ea2cc67 (patch) | |
tree | 66a813cffd9f4ae3f0ef3ff8ac13388b4090b351 /drivers/media/video/tuner-core.c | |
parent | 31bc09b579f31331545e694d0a49ec4e6b380989 (diff) | |
download | linux-4ae5c2e5e627ff22815fb9900161bf188ea2cc67.tar.gz linux-4ae5c2e5e627ff22815fb9900161bf188ea2cc67.tar.xz |
V4L/DVB (3614): Fix compilation warning at powerpc platform
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tuner-core.c')
-rw-r--r-- | drivers/media/video/tuner-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index df195c905366..bbcb281cc391 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c @@ -401,7 +401,7 @@ static void tuner_status(struct i2c_client *client) } tuner_info("Tuner mode: %s\n", p); tuner_info("Frequency: %lu.%02lu MHz\n", freq, freq_fraction); - tuner_info("Standard: 0x%08llx\n", t->std); + tuner_info("Standard: 0x%08lx\n", (unsigned long)t->std); if (t->mode != V4L2_TUNER_RADIO) return; if (t->has_signal) { |