liquidio: remove unused IQ_INSTR_MODE_64B function
authorTom Rix <trix@redhat.com>
Tue, 21 Mar 2023 18:48:11 +0000 (14:48 -0400)
committerJakub Kicinski <kuba@kernel.org>
Thu, 23 Mar 2023 05:05:01 +0000 (22:05 -0700)
clang with W=1 reports
drivers/net/ethernet/cavium/liquidio/request_manager.c:43:19: error:
  unused function 'IQ_INSTR_MODE_64B' [-Werror,-Wunused-function]
static inline int IQ_INSTR_MODE_64B(struct octeon_device *oct, int iq_no)
                  ^
This function and its macro wrapper are not used, so remove them.

Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/20230321184811.1827306-1-trix@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/cavium/liquidio/request_manager.c

index 8e59c2825533a3c1e9c7ef04d537bcc8ed882265..32f854c0cd79bb440a5807eaf358ffbd880895f0 100644 (file)
@@ -40,15 +40,6 @@ static void  __check_db_timeout(struct octeon_device *oct, u64 iq_no);
 
 static void (*reqtype_free_fn[MAX_OCTEON_DEVICES][REQTYPE_LAST + 1]) (void *);
 
-static inline int IQ_INSTR_MODE_64B(struct octeon_device *oct, int iq_no)
-{
-       struct octeon_instr_queue *iq =
-           (struct octeon_instr_queue *)oct->instr_queue[iq_no];
-       return iq->iqcmd_64B;
-}
-
-#define IQ_INSTR_MODE_32B(oct, iq_no)  (!IQ_INSTR_MODE_64B(oct, iq_no))
-
 /* Define this to return the request status comaptible to old code */
 /*#define OCTEON_USE_OLD_REQ_STATUS*/