Skip to content

Commit

Permalink
vlynq: correct typo of missing "CONFIG_" prefix in ifdef
Browse files Browse the repository at this point in the history
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 <rpjday@crashcourse.ca>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Robert P. J. Day authored and Linus Torvalds committed Jul 6, 2009
1 parent cbad1cb commit 9e2db5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/vlynq/vlynq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9e2db5c

Please sign in to comment.