From 6cf4b46197ba0e99342d72cd976e93b168e887ee Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 4 May 2023 12:34:02 -0700 Subject: [PATCH] emac(4): Use bool rather than boolean_t. This was already using true/false rather than TRUE/FALSE. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D39927 --- sys/arm/allwinner/if_emac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/allwinner/if_emac.c b/sys/arm/allwinner/if_emac.c index 3db0c6e95bc0..4191f313a9d1 100644 --- a/sys/arm/allwinner/if_emac.c +++ b/sys/arm/allwinner/if_emac.c @@ -991,7 +991,7 @@ emac_attach(device_t dev) return (error); } -static boolean_t +static bool emac_miibus_iowait(struct emac_softc *sc) { uint32_t timeout;