aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tuner-core.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2006-03-25 15:53:38 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-04-02 04:55:02 -0300
commit4ae5c2e5e627ff22815fb9900161bf188ea2cc67 (patch)
tree66a813cffd9f4ae3f0ef3ff8ac13388b4090b351 /drivers/media/video/tuner-core.c
parentV4L/DVB (3610): Added the new routing commands to cx25840. (diff)
downloadlinux-dev-4ae5c2e5e627ff22815fb9900161bf188ea2cc67.tar.xz
linux-dev-4ae5c2e5e627ff22815fb9900161bf188ea2cc67.zip
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.c2
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) {