diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
commit | 4a11ca4e29ff701a15b6c4de4e99483f97182ea6 (patch) | |
tree | d25f628a9aba608f64fe75989d2287c6480e8b0b /sys/isa/syscons.c | |
parent | fbff0da4c8b49e614414ea85874ca2eace160515 (diff) |
Remove a bunch of variables which were unused both in GENERIC and LINT.
Found by: -Wunused
Notes
Notes:
svn path=/head/; revision=31016
Diffstat (limited to 'sys/isa/syscons.c')
-rw-r--r-- | sys/isa/syscons.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c index cdca4870694b..7f6d4094f336 100644 --- a/sys/isa/syscons.c +++ b/sys/isa/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.235 1997/10/23 03:23:49 yokota Exp $ + * $Id: syscons.c,v 1.236 1997/10/26 07:36:13 yokota Exp $ */ #include "sc.h" @@ -595,7 +595,6 @@ sckbdprobe(int unit, int flags) goto fail; } -succeed: kbdc_set_device_mask(sc_kbdc, m | KBD_KBD_CONTROL_BITS), kbdc_lock(sc_kbdc, FALSE); return TRUE; @@ -3451,7 +3450,6 @@ static void set_keyboard(int command, int data) { int s; - int c; if (sc_kbdc == NULL) return; |