git: aee90183065e - stable/12 - al_eth: make function definitions consistent with declarations

From: Dimitry Andric <dim_at_FreeBSD.org>
Date: Sat, 29 Apr 2023 07:37:38 UTC
The branch stable/12 has been updated by dim:

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

commit aee90183065e0e99d9a705b2800e9267dbb6c885
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2023-04-22 11:45:57 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2023-04-29 07:35:40 +0000

    al_eth: make function definitions consistent with declarations
    
    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.
    
    Reviewed by:    jhb, emaste
    MFC after:      3 days
    Differential Revision: https://reviews.freebsd.org/D39759
    
    (cherry picked from commit 9ea31d78f00d23612f3ab44d83265f8039f487af)
---
 sys/dev/al_eth/al_init_eth_lm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/al_eth/al_init_eth_lm.c b/sys/dev/al_eth/al_init_eth_lm.c
index 96da4bb34d96..7f2553651e3e 100644
--- a/sys/dev/al_eth/al_init_eth_lm.c
+++ b/sys/dev/al_eth/al_init_eth_lm.c
@@ -849,7 +849,7 @@ config_error:
 	return rc;
 }
 
-static boolean_t al_eth_lm_retimer_ds25_signal_detect(struct al_eth_lm_context *lm_context,
+static al_bool al_eth_lm_retimer_ds25_signal_detect(struct al_eth_lm_context *lm_context,
 						    uint32_t channel)
 {
 	int rc = 0;
@@ -879,7 +879,7 @@ config_error:
 	return FALSE;
 }
 
-static boolean_t al_eth_lm_retimer_ds25_cdr_lock(struct al_eth_lm_context *lm_context,
+static al_bool al_eth_lm_retimer_ds25_cdr_lock(struct al_eth_lm_context *lm_context,
 					       uint32_t channel)
 {
 	int rc = 0;