From 37dc4e278c72d018849083ef4e1111576651de7a Mon Sep 17 00:00:00 2001 From: billf Date: Sun, 26 Sep 1999 21:44:16 +0000 Subject: -Wall cleanups, handle unknown cases. Submitted by: billf, ken Reviewed by: ken --- sbin/camcontrol/camcontrol.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'sbin') diff --git a/sbin/camcontrol/camcontrol.c b/sbin/camcontrol/camcontrol.c index 687349a..b6f9e67 100644 --- a/sbin/camcontrol/camcontrol.c +++ b/sbin/camcontrol/camcontrol.c @@ -958,7 +958,6 @@ dorescan_or_reset(int argc, char **argv, int rescan) "you must specify a bus, or a bus:target:lun to %s"; int rv, error = 0; int bus = -1, target = -1, lun = -1; - char *tstr, *tmpstr = NULL; if (argc < 3) { warnx(must, rescan? "rescan" : "reset"); @@ -2031,7 +2030,6 @@ cts_print(struct cam_device *device, struct ccb_trans_settings *cts) if (cts->sync_offset != 0) { u_int freq; - u_int speed; freq = scsi_calc_syncsrate(cts->sync_period); fprintf(stdout, "%sfrequencey: %d.%03dMHz\n", pathstr, @@ -2153,6 +2151,9 @@ cpi_print(struct ccb_pathinq *cpi) case PI_SOFT_RST: str = "soft reset alternative"; break; + default: + str = "unknown PI bit set"; + break; } fprintf(stdout, "%s\n", str); } @@ -2179,6 +2180,9 @@ cpi_print(struct ccb_pathinq *cpi) str = "user has disabled initial BUS RESET or" " controller is in target/mixed mode"; break; + default: + str = "unknown PIM bit set"; + break; } fprintf(stdout, "%s\n", str); } @@ -2209,6 +2213,9 @@ cpi_print(struct ccb_pathinq *cpi) case PIT_GRP_7: str = "group 7 commands in target mode"; break; + default: + str = "unknown PIT bit set"; + break; } fprintf(stdout, "%s\n", str); @@ -2459,11 +2466,8 @@ ratecontrol(struct cam_device *device, int retry_count, int timeout, ccb->cts.valid &= ~CCB_TRANS_SYNC_OFFSET_VALID; if (syncrate != -1) { - int num_syncrates; int prelim_sync_period; - int period_factor_set = 0; u_int freq; - int i; if ((cpi.hba_inquiry & PI_SDTR_ABLE) == 0) { warnx("HBA at %s%d is not cable of changing " -- cgit v1.1