git: 2f2da21740b4 - main - mpi3mr: add missing terminator entry to mpi3mr_identifiers array
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 20 Jan 2024 00:01:56 UTC
The branch main has been updated by chs:
URL: https://cgit.FreeBSD.org/src/commit/?id=2f2da21740b462e52e81880c82b4584be5ce6195
commit 2f2da21740b462e52e81880c82b4584be5ce6195
Author: Chuck Silvers <chs@FreeBSD.org>
AuthorDate: 2024-01-19 23:58:41 +0000
Commit: Chuck Silvers <chs@FreeBSD.org>
CommitDate: 2024-01-19 23:58:41 +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
---
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);