Update the mpi3 header files. Link: https://lore.kernel.org/r/20220912135742.11764-2-sreekanth.reddy@broadcom.com Signed-off-by: Sreekanth Reddy <sreekanth.reddy@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
16 lines
562 B
C
16 lines
562 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright 2016-2022 Broadcom Inc. All rights reserved.
|
|
*
|
|
*/
|
|
#ifndef MPI30_PCI_H
|
|
#define MPI30_PCI_H 1
|
|
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_MASK (0x0002)
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_FAIL_ONLY (0x0000)
|
|
#define MPI3_NVME_FLAGS_FORCE_ADMIN_ERR_REPLY_ALL (0x0002)
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_MASK (0x0001)
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_IO (0x0000)
|
|
#define MPI3_NVME_FLAGS_SUBMISSIONQ_ADMIN (0x0001)
|
|
|
|
#endif
|