dpaa2: Replace boolean_t with bool.

This was already using true/false rather than TRUE/FALSE.

Reviewed by:	imp, emaste
Differential Revision:	https://reviews.freebsd.org/D39924
This commit is contained in:
John Baldwin 2023-05-04 12:32:57 -07:00
parent 463edaf441
commit 1efae8a24f
2 changed files with 2 additions and 2 deletions

View File

@ -2776,7 +2776,7 @@ dpaa2_ni_transmit(if_t ifp, struct mbuf *m)
struct dpaa2_ni_channel *chan;
struct dpaa2_ni_tx_ring *tx;
uint32_t fqid;
boolean_t found = false;
bool found = false;
int chan_n = 0;
if (__predict_false(!(if_getdrvflags(ifp) & IFF_DRV_RUNNING)))

View File

@ -552,7 +552,7 @@ struct dpaa2_ni_softc {
struct mtx lock;
device_t miibus;
struct mii_data *mii;
boolean_t fixed_link;
bool fixed_link;
struct ifmedia fixed_ifmedia;
int media_status;