aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/cam/cam_periph.c10
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++;
}