diff options
author | Jes Sorensen <jes@sgi.com> | 2007-07-11 17:26:30 +0200 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-07-11 11:40:42 -0700 |
commit | 256a7e097ba3d1179867b4c9aba1b75fb32d44f2 (patch) | |
tree | 4d2a3095ddf1d95c816927554e859aab0c92aa13 /arch/ia64/sn/kernel | |
parent | 012b7105cc816fb797eb1c161cdfc0052b5c3f53 (diff) |
[IA64] silence GCC ia64 unused variable warnings
Tell GCC to stop spewing out unnecessary warnings for unused variables
passed to functions as pointers for ia64 files.
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/sn/kernel')
-rw-r--r-- | arch/ia64/sn/kernel/tiocx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/sn/kernel/tiocx.c b/arch/ia64/sn/kernel/tiocx.c index 493380b2c05..5a289e4de83 100644 --- a/arch/ia64/sn/kernel/tiocx.c +++ b/arch/ia64/sn/kernel/tiocx.c @@ -369,7 +369,7 @@ static void tio_corelet_reset(nasid_t nasid, int corelet) static int is_fpga_tio(int nasid, int *bt) { - u16 ioboard_type; + u16 uninitialized_var(ioboard_type); /* GCC be quiet */ s64 rc; rc = ia64_sn_sysctl_ioboard_get(nasid, &ioboard_type); |