From: Robert P. J. Day Date: Sun, 5 Jul 2009 19:08:00 +0000 (-0700) Subject: vlynq: correct typo of missing "CONFIG_" prefix in ifdef X-Git-Tag: v2.6.31-rc3~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e2db5c90a25acf7657edb3687b8d5813ccddfee;p=platform%2Fkernel%2Flinux-3.10.git vlynq: correct typo of missing "CONFIG_" prefix in ifdef Fix a typo in the vlynq bus driver which was missing the CONFIG_ prefix to turn on debugging code. Signed-off-by: Robert P. J. Day Signed-off-by: Florian Fainelli Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/vlynq/vlynq.c b/drivers/vlynq/vlynq.c index 7335433..f05d2a3 100644 --- a/drivers/vlynq/vlynq.c +++ b/drivers/vlynq/vlynq.c @@ -76,7 +76,7 @@ struct vlynq_regs { u32 int_device[8]; }; -#ifdef VLYNQ_DEBUG +#ifdef CONFIG_VLYNQ_DEBUG static void vlynq_dump_regs(struct vlynq_device *dev) { int i;