]> git.karo-electronics.de Git - karo-tx-linux.git/commit
kgdb,x86: fix warning about unused variable
authorJason Wessel <jason.wessel@windriver.com>
Thu, 9 Aug 2012 02:12:19 +0000 (21:12 -0500)
committerJason Wessel <jason.wessel@windriver.com>
Fri, 12 Oct 2012 11:37:22 +0000 (06:37 -0500)
commit888385258e3c485d4bec324258e7be0f36d2cdfc
tree3ac8cd09ea97332f18f71f68d8f219393e996579
parent23af02314aef7c132fff8413f52e91489b4fa6ab
kgdb,x86: fix warning about unused variable

When compiling without CONFIG_DEBUG_RODATA the following
compiler warning is generated:

arch/x86/kernel/kgdb.c: In function 'kgdb_arch_set_breakpoint':
arch/x86/kernel/kgdb.c:749: warning: unused variable 'opc'

The variable instantiation needs to be inside the #ifdef to
make the warning go away.

Reported-by: Thiago Rafael Becker <trbecker@trbecker.org>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
arch/x86/kernel/kgdb.c