xpt_done has no reason to take a volatile ccb *.

This commit is contained in:
Justin T. Gibbs 1999-03-05 23:18:56 +00:00
parent a5479bc57a
commit d1dc9ab13a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44501

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: cam_xpt_sim.h,v 1.1 1998/09/15 06:33:23 gibbs Exp $ * $Id: cam_xpt_sim.h,v 1.2 1999/01/27 20:09:16 dillon Exp $
*/ */
#ifndef _CAM_CAM_XPT_SIM_H #ifndef _CAM_CAM_XPT_SIM_H
@ -43,7 +43,7 @@ u_int32_t xpt_freeze_simq(struct cam_sim *sim, u_int count);
void xpt_release_simq(struct cam_sim *sim, int run_queue); void xpt_release_simq(struct cam_sim *sim, int run_queue);
u_int32_t xpt_freeze_devq(struct cam_path *path, u_int count); u_int32_t xpt_freeze_devq(struct cam_path *path, u_int count);
void xpt_release_devq(struct cam_ed *dev, int run_queue); void xpt_release_devq(struct cam_ed *dev, int run_queue);
void xpt_done(volatile union ccb *done_ccb); void xpt_done(union ccb *done_ccb);
#endif /* KERNEL */ #endif /* KERNEL */
#endif /* _CAM_CAM_XPT_SIM_H */ #endif /* _CAM_CAM_XPT_SIM_H */