diff options
| author | Kees Cook <kees@kernel.org> | 2025-02-05 13:41:33 -0800 |
|---|---|---|
| committer | Kees Cook <kees@kernel.org> | 2025-02-28 11:51:32 -0800 |
| commit | d66ad1e60ef10f506a31a80864f5aff31e5a0b5e (patch) | |
| tree | 2dd9876cd719e34cdc1ba7b3e9e721b2b6c8af1f /drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h | |
| parent | e1de43aea35f78b796367e861b59541fa0cf61ba (diff) | |
scsi: mpt3sas: Mark device strings as nonstring
In preparation for memtostr*() checking that its source is marked as
nonstring, annotate the device strings accordingly.
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> # SCSI
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h')
| -rw-r--r-- | drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h b/drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h index 587f7d248219..d123d3b740e1 100644 --- a/drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h +++ b/drivers/scsi/mpt3sas/mpi/mpi2_cnfg.h @@ -606,7 +606,7 @@ typedef struct _MPI2_CONFIG_REPLY { typedef struct _MPI2_CONFIG_PAGE_MAN_0 { MPI2_CONFIG_PAGE_HEADER Header; /*0x00 */ - U8 ChipName[16]; /*0x04 */ + U8 ChipName[16] __nonstring; /*0x04 */ U8 ChipRevision[8]; /*0x14 */ U8 BoardName[16]; /*0x1C */ U8 BoardAssembly[16]; /*0x2C */ |