History log of /drivers/media/tuners/mt2060.h
Revision Date Author Comments
7b34be71db533f3e0cf93d53cf62d036cdb5418a 20-Jan-2013 Peter Senna Tschudin <peter.senna@gmail.com> [media] use IS_ENABLED() macro

This patch introduces the use of IS_ENABLED() macro. For example,
replacing:
#if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
with:
#if IS_ENABLED(CONFIG_I2C)
All changes made by this patch respect the same replacement pattern.

Reported-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
ccae7af2bf07dfef69cc2eb6ebc9e1ff15addfbd 14-Jun-2012 Mauro Carvalho Chehab <mchehab@redhat.com> [media] common: move media/common/tuners to media/tuners

Move the tuners one level up, as the "common" directory will be used
by drivers that are shared between more than one driver.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>