]> git.karo-electronics.de Git - linux-beck.git/commitdiff
IB/qib: Remove unused qib_7322_intr_msgs[]
authorJubin John <jubin.john@intel.com>
Thu, 19 May 2016 12:21:50 +0000 (05:21 -0700)
committerDoug Ledford <dledford@redhat.com>
Thu, 26 May 2016 15:23:11 +0000 (11:23 -0400)
Building the qib driver with gcc version 6.1.0 raises the following
build warning:
drivers/infiniband/hw/qib/qib_iba7322.c:1311:39: warning:
'qib_7322_intr_msgs' defined but not used [-Wunused-const-variable=]
 static const struct  qib_hwerror_msgs qib_7322_intr_msgs[] = {
                                       ^~~~~~~~~~~~~~~~~~
Remove the unused qib_7322_intr_msgs[]

Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Jubin John <jubin.john@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/qib/qib_iba7322.c

index 82d7c4bf5970c12d1be0b95978b8d5f31972985b..ce4034071f9c4db9d67376357d3f64c8db1792b0 100644 (file)
@@ -1308,21 +1308,6 @@ static const struct  qib_hwerror_msgs qib_7322p_error_msgs[] = {
        SYM_LSB(IntMask, fldname##17IntMask)), \
        .msg = #fldname "_C", .sz = sizeof(#fldname "_C") }
 
-static const struct  qib_hwerror_msgs qib_7322_intr_msgs[] = {
-       INTR_AUTO_P(SDmaInt),
-       INTR_AUTO_P(SDmaProgressInt),
-       INTR_AUTO_P(SDmaIdleInt),
-       INTR_AUTO_P(SDmaCleanupDone),
-       INTR_AUTO_C(RcvUrg),
-       INTR_AUTO_P(ErrInt),
-       INTR_AUTO(ErrInt),      /* non-port-specific errs */
-       INTR_AUTO(AssertGPIOInt),
-       INTR_AUTO_P(SendDoneInt),
-       INTR_AUTO(SendBufAvailInt),
-       INTR_AUTO_C(RcvAvail),
-       { .mask = 0, .sz = 0 }
-};
-
 #define TXSYMPTOM_AUTO_P(fldname) \
        { .mask = SYM_MASK(SendHdrErrSymptom_0, fldname), \
        .msg = #fldname, .sz = sizeof(#fldname) }