Page MenuHomeFreeBSD

al_eth: make function definitions consistent with declarations
ClosedPublic

Authored by dim on Apr 22 2023, 12:03 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 29, 12:38 AM
Unknown Object (File)
Oct 4 2024, 1:40 PM
Unknown Object (File)
Oct 3 2024, 6:51 PM
Unknown Object (File)
Oct 1 2024, 2:05 PM
Unknown Object (File)
Sep 29 2024, 7:22 AM
Unknown Object (File)
Sep 27 2024, 1:51 AM
Unknown Object (File)
Sep 26 2024, 12:32 PM
Unknown Object (File)
Sep 26 2024, 10:19 AM
Subscribers

Details

Summary

The declarations for al_eth_lm_retimer_ds25_signal_detect() and
al_eth_lm_retimer_ds25_cdr_lock() say that these functions return
'al_bool', but the definitions actually return 'boolean_t'.

Make the definitions match the declarations.

MFC after: 3 days

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dim requested review of this revision.Apr 22 2023, 12:03 PM
emaste added a subscriber: mw.

OK, although we may want to either just use int to match struct al_eth_lm_retimer, or change struct al_eth_lm_retimer to al_bool as well.

This revision is now accepted and ready to land.Apr 24 2023, 1:50 PM

Or just replace al_bool with C99 bool, but that can be done in a future change.