net: ena: cosmetic: satisfy gcc warning
authorArthur Kiyanovski <akiyano@amazon.com>
Tue, 21 Jul 2020 13:38:06 +0000 (16:38 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Jul 2020 22:59:04 +0000 (15:59 -0700)
gcc 4.8 reports a warning when initializing with = {0}.
Dropping the "0" from the braces fixes the issue.
This fix is not ANSI compatible but is allowed by gcc.

Signed-off-by: Sameeh Jubran <sameehj@amazon.com>
Signed-off-by: Arthur Kiyanovski <akiyano@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amazon/ena/ena_netdev.c

index e453542..d3d2e39 100644 (file)
@@ -307,7 +307,7 @@ static int ena_xdp_xmit_buff(struct net_device *dev,
                             struct ena_rx_buffer *rx_info)
 {
        struct ena_adapter *adapter = netdev_priv(dev);
-       struct ena_com_tx_ctx ena_tx_ctx = {0};
+       struct ena_com_tx_ctx ena_tx_ctx = {};
        struct ena_tx_buffer *tx_info;
        struct ena_ring *xdp_ring;
        u16 next_to_use, req_id;