From: Christoph Hellwig Date: Wed, 15 Feb 2017 07:18:41 +0000 (+0100) Subject: crypto: cavium - remove dead MSI-X related define X-Git-Tag: v4.14-rc1~1344^2~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4f228bff3c98990537ebd4bcab6730ae02d6e48;p=platform%2Fkernel%2Flinux-rpi.git crypto: cavium - remove dead MSI-X related define Signed-off-by: Christoph Hellwig Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/cavium/cpt/cpt_common.h b/drivers/crypto/cavium/cpt/cpt_common.h index ede612f..225078d 100644 --- a/drivers/crypto/cavium/cpt/cpt_common.h +++ b/drivers/crypto/cavium/cpt/cpt_common.h @@ -20,12 +20,10 @@ #define CPT_81XX_PCI_VF_DEVICE_ID 0xa041 /* flags to indicate the features supported */ -#define CPT_FLAG_MSIX_ENABLED BIT(0) #define CPT_FLAG_SRIOV_ENABLED BIT(1) #define CPT_FLAG_VF_DRIVER BIT(2) #define CPT_FLAG_DEVICE_READY BIT(3) -#define cpt_msix_enabled(cpt) ((cpt)->flags & CPT_FLAG_MSIX_ENABLED) #define cpt_sriov_enabled(cpt) ((cpt)->flags & CPT_FLAG_SRIOV_ENABLED) #define cpt_vf_driver(cpt) ((cpt)->flags & CPT_FLAG_VF_DRIVER) #define cpt_device_ready(cpt) ((cpt)->flags & CPT_FLAG_DEVICE_READY)