mirror of
https://github.com/opnsense/src.git
synced 2026-03-28 05:33:12 -04:00
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:
parent
463edaf441
commit
1efae8a24f
2 changed files with 2 additions and 2 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue