mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
Fix indentation ruined by previous commit.
This commit is contained in:
parent
2c6b3ec454
commit
cad823f463
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=64545
@ -2081,18 +2081,18 @@ umass_cam_detach(struct umass_softc *sc)
|
||||
struct cam_path *path;
|
||||
|
||||
if (umass_sim) {
|
||||
/* detach of sim not done until module unload */
|
||||
DPRINTF(UDMASS_SCSI, ("%s:%d:%d:%d: losing CAM device entry\n",
|
||||
USBDEVNAME(sc->sc_dev), cam_sim_path(umass_sim),
|
||||
USBDEVUNIT(sc->sc_dev), CAM_LUN_WILDCARD));
|
||||
/* detach of sim not done until module unload */
|
||||
DPRINTF(UDMASS_SCSI, ("%s:%d:%d:%d: losing CAM device entry\n",
|
||||
USBDEVNAME(sc->sc_dev), cam_sim_path(umass_sim),
|
||||
USBDEVUNIT(sc->sc_dev), CAM_LUN_WILDCARD));
|
||||
|
||||
if (xpt_create_path(&path, NULL, cam_sim_path(umass_sim),
|
||||
USBDEVUNIT(sc->sc_dev), CAM_LUN_WILDCARD)
|
||||
!= CAM_REQ_CMP)
|
||||
return(ENOMEM);
|
||||
if (xpt_create_path(&path, NULL, cam_sim_path(umass_sim),
|
||||
USBDEVUNIT(sc->sc_dev), CAM_LUN_WILDCARD)
|
||||
!= CAM_REQ_CMP)
|
||||
return(ENOMEM);
|
||||
|
||||
xpt_async(AC_LOST_DEVICE, path, NULL);
|
||||
xpt_free_path(path);
|
||||
xpt_async(AC_LOST_DEVICE, path, NULL);
|
||||
xpt_free_path(path);
|
||||
}
|
||||
|
||||
return(0);
|
||||
|
Loading…
Reference in New Issue
Block a user