From 214909d6698da52cb8a2c4c0c591264aeb58b4c0 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 15 Apr 2023 18:25:55 -0600 Subject: [PATCH] Revert "cam: fix up world compilation after previous" This reverts commit 1d35493e4661. It was the wrong fix. 757fc6666b87 has the proper fix to include stdbool for userland. Sponsored by: Netflix --- sys/cam/cam_ccb.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/cam/cam_ccb.h b/sys/cam/cam_ccb.h index 07ccb262023d..a6b12b6a3584 100644 --- a/sys/cam/cam_ccb.h +++ b/sys/cam/cam_ccb.h @@ -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);