aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2023-05-04 19:34:02 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2023-05-04 19:34:02 +0000
commit6cf4b46197ba0e99342d72cd976e93b168e887ee (patch)
treec5f64b24cf8ad5dbb3c549ba4314fb6e4421633c
parentafdb42987ca82869eeaecf6dc25c2b6fb7b8370e (diff)
downloadsrc-6cf4b46197ba0e99342d72cd976e93b168e887ee.tar.gz
src-6cf4b46197ba0e99342d72cd976e93b168e887ee.zip
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
-rw-r--r--sys/arm/allwinner/if_emac.c2
1 files changed, 1 insertions, 1 deletions
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 @@ fail:
return (error);
}
-static boolean_t
+static bool
emac_miibus_iowait(struct emac_softc *sc)
{
uint32_t timeout;