Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 May 2023 19:34:26 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 6cf4b46197ba - main - emac(4): Use bool rather than boolean_t.
Message-ID:  <202305041934.344JYQEJ049444@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=6cf4b46197ba0e99342d72cd976e93b168e887ee

commit 6cf4b46197ba0e99342d72cd976e93b168e887ee
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-05-04 19:34:02 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-05-04 19:34:02 +0000

    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 @@ fail:
 	return (error);
 }
 
-static boolean_t
+static bool
 emac_miibus_iowait(struct emac_softc *sc)
 {
 	uint32_t timeout;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305041934.344JYQEJ049444>