diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-08-24 02:51:28 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-08-24 02:51:28 +0000 |
| commit | a5074f708eb7c9b425d2928913c5ea8cc977bf08 (patch) | |
| tree | fc88746a598d418a7f74ff3a029ad0e19778ec6f | |
| parent | c1b8161326a0bd4085ca91ba4681ce5fb734a812 (diff) | |
Notes
| -rw-r--r-- | sys/cam/cam_periph.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index 48d26e705c5a..e3c807a258d8 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -1552,25 +1552,25 @@ cam_periph_error(union ccb *ccb, cam_flags camflags, case CAM_CMD_TIMEOUT: if (bootverbose && printed == 0) { xpt_print_path(ccb->ccb_h.path); - printf("Command timed out"); + printf("Command timed out\n"); printed++; } case CAM_UNEXP_BUSFREE: if (bootverbose && printed == 0) { xpt_print_path(ccb->ccb_h.path); - printf("Unexpected Bus Free"); + printf("Unexpected Bus Free\n"); printed++; } case CAM_UNCOR_PARITY: if (bootverbose && printed == 0) { xpt_print_path(ccb->ccb_h.path); - printf("Uncorrected Parity Error"); + printf("Uncorrected Parity Error\n"); printed++; } case CAM_DATA_RUN_ERR: if (bootverbose && printed == 0) { xpt_print_path(ccb->ccb_h.path); - printf("Data Overrun"); + printf("Data Overrun\n"); printed++; } error = EIO; /* we have to kill the command */ @@ -1600,7 +1600,7 @@ cam_periph_error(union ccb *ccb, cam_flags camflags, error = ERESTART; if (bootverbose && printed == 0) { xpt_print_path(ccb->ccb_h.path); - printf("Selection Timeout"); + printf("Selection Timeout\n"); printed++; } |
