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
This commit is contained in:
John Baldwin 2023-05-04 12:33:20 -07:00
parent 1efae8a24f
commit 2fd903276d

View File

@ -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;