From bd6ea41b5c8b2f18653fe4f1886c43765dd64523 Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 18 Jan 2011 15:23:16 +0000 Subject: Remove some always-true comparisons. Submitted by: clang via rdivacky --- sys/dev/buslogic/bt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/buslogic/bt.c') diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index b7df4b4..88d152f 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -975,7 +975,7 @@ bt_find_probe_range(int ioport, int *port_index, int *max_port_index) int bt_iop_from_bio(isa_compat_io_t bio_index) { - if (bio_index >= 0 && bio_index < BT_NUM_ISAPORTS) + if (bio_index < BT_NUM_ISAPORTS) return (bt_board_ports[bio_index]); return (-1); } -- cgit v1.1