From 8226fdbdce871e99b3402f91a58ebcc6072fdc71 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Sat, 8 Nov 2003 10:56:57 +0000 Subject: [PATCH] Don't be so chatty when performing manual sense. This should make ATAPICAM devices a lot more quiet. --- sys/cam/cam_periph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index 0728de5e7c3..2b7622b6252 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -969,13 +969,13 @@ camperiphdone(struct cam_periph *periph, union ccb *done_ccb) if (sense_key != SSD_KEY_NO_SENSE) { saved_ccb->ccb_h.status |= CAM_AUTOSNS_VALID; +#if 0 xpt_print_path(saved_ccb->ccb_h.path); printf("Recovered Sense\n"); -#if 0 scsi_sense_print(&saved_ccb->csio); -#endif cam_error_print(saved_ccb, CAM_ESF_ALL, CAM_EPF_ALL); +#endif xpt_done_ccb = TRUE; } }