Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Apr 2025 17:21:32 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 05e6c3afbc40 - stable/14 - mpi3mr: add missing terminator entry to mpi3mr_identifiers array
Message-ID:  <202504301721.53UHLWwP093391@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by imp:

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

commit 05e6c3afbc40d28a7b643abe218cc0c5c00511ae
Author:     Chuck Silvers <chs@FreeBSD.org>
AuthorDate: 2024-01-19 23:58:41 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-04-30 17:05:50 +0000

    mpi3mr: add missing terminator entry to mpi3mr_identifiers array
    
    Reported by:    KASAN
    Sponsored by:   Netflix
    Reviewed by:    imp
    Differential Revision:  https://reviews.freebsd.org/D43519
    
    (cherry picked from commit 2f2da21740b462e52e81880c82b4584be5ce6195)
---
 sys/dev/mpi3mr/mpi3mr_pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/dev/mpi3mr/mpi3mr_pci.c b/sys/dev/mpi3mr/mpi3mr_pci.c
index c1c0211aab4e..1548d577a726 100644
--- a/sys/dev/mpi3mr/mpi3mr_pci.c
+++ b/sys/dev/mpi3mr/mpi3mr_pci.c
@@ -89,6 +89,7 @@ struct mpi3mr_ident {
 } mpi3mr_identifiers[] = {
 	{ MPI3_MFGPAGE_VENDORID_BROADCOM, MPI3_MFGPAGE_DEVID_SAS4116,
 	    0xffff, 0xffff, 0, "Broadcom MPIMR 3.0 controller" },
+	{ 0 }
 };
 
 DRIVER_MODULE(mpi3mr, pci, mpi3mr_pci_driver, 0, 0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202504301721.53UHLWwP093391>