diff options
author | Guillem Jover <guillem@hadrons.org> | 2011-08-25 15:22:35 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-27 00:51:43 +0200 |
commit | 0f2165548c855c7e91b3491afe2dd355be1bec64 (patch) | |
tree | 9784cf6a357dcf142ea1893be54b3a03ca7e0a8d /i386/i386at/com.c | |
parent | c706c9321eaf9c4dd6c462428708759dbf5a1cc4 (diff) |
Disable unused variables
* i386/i386at/com.c (comstart): Disable `i' variable.
* linux/src/drivers/net/at1700.c (net_close): Disable `lp' variable.
* linux/dev/include/linux/blk.h (end_request): Disable `nsect' variable
on MACH.
Diffstat (limited to 'i386/i386at/com.c')
-rw-r--r-- | i386/i386at/com.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 325e099..f6d5656 100644 --- a/i386/i386at/com.c +++ b/i386/i386at/com.c @@ -622,7 +622,9 @@ comstart(tp) struct tty *tp; { char nch; +#if 0 int i; +#endif if (tp->t_state & (TS_TIMEOUT|TS_TTSTOP|TS_BUSY)) { comst_1++; |