From 2fd903276ddb5159dcea93f16e0bfe9a1fc9e491 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 4 May 2023 12:33:20 -0700 Subject: [PATCH] dwc(4): Use bool rather than boolean_t. This was already using true/false rather than TRUE/FALSE. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D39925 --- sys/dev/dwc/if_dwcvar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/dwc/if_dwcvar.h b/sys/dev/dwc/if_dwcvar.h index f4193b8222c..96bcffc45a4 100644 --- a/sys/dev/dwc/if_dwcvar.h +++ b/sys/dev/dwc/if_dwcvar.h @@ -70,9 +70,9 @@ struct dwc_softc { struct mtx mtx; void * intr_cookie; struct callout dwc_callout; - boolean_t link_is_up; - boolean_t is_attached; - boolean_t is_detaching; + bool link_is_up; + bool is_attached; + bool is_detaching; int tx_watchdog_count; int stats_harvest_count; int phy_mode;