The branch main has been updated by imp:

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

commit 66efdefe78bb752de47bae49b72b76c1a79266ca
Author:     WHR <w...@rivoreo.one>
AuthorDate: 2024-09-03 04:44:12 +0000
Commit:     Warner Losh <i...@freebsd.org>
CommitDate: 2024-09-20 22:22:43 +0000

    mfi: Correct a struct member name
    
    This 'struct mfi_evt_pd' typed member should be named 'pd' instead of 'ld'.
    
    PR: 281155
    Reviewed by: imp, delphij
    Pull Request: https://github.com/freebsd/freebsd-src/pull/1402
---
 sys/dev/mfi/mfireg.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/mfi/mfireg.h b/sys/dev/mfi/mfireg.h
index f7e3ebc98cd4..fe5e1be29d38 100644
--- a/sys/dev/mfi/mfireg.h
+++ b/sys/dev/mfi/mfireg.h
@@ -1028,7 +1028,7 @@ struct mfi_evt_detail {
                } pd_prog;
 
                struct {
-                       struct mfi_evt_pd       ld;
+                       struct mfi_evt_pd       pd;
                        uint32_t                prev_state;
                        uint32_t                new_state;
                } pd_state;

Reply via email to