From: Peter Senna Tschudin Date: Sun, 20 Jan 2013 04:32:56 +0000 (-0300) Subject: [media] use IS_ENABLED() macro X-Git-Tag: v3.9-rc1~93^2~62 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b34be71db533f3e0cf93d53cf62d036cdb5418a;p=pandora-kernel.git [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 Signed-off-by: Peter Senna Tschudin Acked-by: Antti Palosaari Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed