net: ena: store values in their appropriate variables types
authorShay Agroskin <shayagr@amazon.com>
Tue, 8 Dec 2020 18:02:02 +0000 (20:02 +0200)
committerJakub Kicinski <kuba@kernel.org>
Wed, 9 Dec 2020 23:26:40 +0000 (15:26 -0800)
This patch changes some of the variables types to match the values they
hold. These wrong types fail some of our static checkers that search for
accidental conversions in our driver.

Signed-off-by: Ido Segev <idose@amazon.com>
Signed-off-by: Igor Chauskin <igorch@amazon.com>
Signed-off-by: Shay Agroskin <shayagr@amazon.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/amazon/ena/ena_com.c
drivers/net/ethernet/amazon/ena/ena_com.h

index e168edf3c9304d93f928007178c81887ae40c936..02087d443e730cb9cc2c24808218c03f927a3b51 100644 (file)
@@ -1360,16 +1360,15 @@ int ena_com_execute_admin_command(struct ena_com_admin_queue *admin_queue,
        comp_ctx = ena_com_submit_admin_cmd(admin_queue, cmd, cmd_size,
                                            comp, comp_size);
        if (IS_ERR(comp_ctx)) {
-               if (comp_ctx == ERR_PTR(-ENODEV))
+               ret = PTR_ERR(comp_ctx);
+               if (ret == -ENODEV)
                        netdev_dbg(admin_queue->ena_dev->net_device,
-                                  "Failed to submit command [%ld]\n",
-                                  PTR_ERR(comp_ctx));
+                                  "Failed to submit command [%d]\n", ret);
                else
                        netdev_err(admin_queue->ena_dev->net_device,
-                                  "Failed to submit command [%ld]\n",
-                                  PTR_ERR(comp_ctx));
+                                  "Failed to submit command [%d]\n", ret);
 
-               return PTR_ERR(comp_ctx);
+               return ret;
        }
 
        ret = ena_com_wait_and_process_admin_cq(comp_ctx, admin_queue);
@@ -1595,7 +1594,7 @@ int ena_com_set_aenq_config(struct ena_com_dev *ena_dev, u32 groups_flag)
 int ena_com_get_dma_width(struct ena_com_dev *ena_dev)
 {
        u32 caps = ena_com_reg_bar_read32(ena_dev, ENA_REGS_CAPS_OFF);
-       int width;
+       u32 width;
 
        if (unlikely(caps == ENA_MMIO_READ_TIMEOUT)) {
                netdev_err(ena_dev->net_device, "Reg read timeout occurred\n");
@@ -2247,7 +2246,7 @@ int ena_com_get_dev_basic_stats(struct ena_com_dev *ena_dev,
        return ret;
 }
 
-int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, int mtu)
+int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, u32 mtu)
 {
        struct ena_com_admin_queue *admin_queue;
        struct ena_admin_set_feat_cmd cmd;
index b0f76fb3b1d745e17d900d9851c15f2d9015a672..343caf41e709fe103ce2c20b3256daedb979cc50 100644 (file)
@@ -605,7 +605,7 @@ int ena_com_get_eni_stats(struct ena_com_dev *ena_dev,
  *
  * @return: 0 on Success and negative value otherwise.
  */
-int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, int mtu);
+int ena_com_set_dev_mtu(struct ena_com_dev *ena_dev, u32 mtu);
 
 /* ena_com_get_offload_settings - Retrieve the device offloads capabilities
  * @ena_dev: ENA communication layer struct