s/bus %d/scbus%d/ in some messages to correct terminology.

This commit is contained in:
Alexander Motin 2009-09-06 18:56:08 +00:00
parent ad41300955
commit 70f2d05499
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=196900

View File

@ -4605,7 +4605,7 @@ xptconfigfunc(struct cam_eb *bus, void *arg)
CAM_TARGET_WILDCARD,
CAM_LUN_WILDCARD)) !=CAM_REQ_CMP){
printf("xptconfigfunc: xpt_create_path failed with "
"status %#x for bus %d\n", status, bus->path_id);
"status %#x for scbus%d\n", status, bus->path_id);
printf("xptconfigfunc: halting bus configuration\n");
xpt_free_ccb(work_ccb);
busses_to_config--;
@ -4616,7 +4616,7 @@ xptconfigfunc(struct cam_eb *bus, void *arg)
work_ccb->ccb_h.func_code = XPT_PATH_INQ;
xpt_action(work_ccb);
if (work_ccb->ccb_h.status != CAM_REQ_CMP) {
printf("xptconfigfunc: CPI failed on bus %d "
printf("xptconfigfunc: CPI failed on scbus%d "
"with status %d\n", bus->path_id,
work_ccb->ccb_h.status);
xpt_finishconfig(xpt_periph, work_ccb);