Revert "cam: fix up world compilation after previous"

This reverts commit 1d35493e46. It was the wrong fix. 757fc6666b has
the proper fix to include stdbool for userland.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2023-04-15 18:25:55 -06:00
parent 757fc6666b
commit 214909d669

View File

@ -1516,13 +1516,11 @@ cam_ccb_status(union ccb *ccb)
return ((cam_status)(ccb->ccb_h.status & CAM_STATUS_MASK));
}
#ifdef _KERNEL
static inline bool
cam_ccb_success(union ccb *ccb)
{
return (cam_ccb_status(ccb) == CAM_REQ_CMP);
}
#endif
void cam_calc_geometry(struct ccb_calc_geometry *ccg, int extended);