net/ixgbe: fix zeroing of RSS config
[dpdk.git] / drivers / net / bnx2x / bnx2x_ethdev.h
index 5f9169d..bd3ef14 100644 (file)
@@ -1,11 +1,8 @@
-/*
+/* SPDX-License-Identifier: BSD-3-Clause
  * Copyright (c) 2013-2015 Brocade Communications Systems, Inc.
- *
  * Copyright (c) 2015-2018 Cavium Inc.
  * All rights reserved.
  * www.cavium.com
- *
- * See LICENSE.bnx2x_pmd for copyright and licensing details.
  */
 
 #ifndef PMD_BNX2X_ETHDEV_H
@@ -50,6 +47,7 @@
 #define FALSE               0
 #define TRUE                1
 
+typedef int bool;
 #define false               0
 #define true                1
 #define min(a,b)        RTE_MIN(a,b)
@@ -77,7 +75,8 @@
 
 /* MAC address operations */
 struct bnx2x_mac_ops {
-       void (*mac_addr_add)(struct rte_eth_dev *dev, struct ether_addr *addr,
+       void (*mac_addr_add)(struct rte_eth_dev *dev,
+                       struct rte_ether_addr *addr,
                        uint16_t index, uint32_t pool);                           /* not implemented yet */
        void (*mac_addr_remove)(struct rte_eth_dev *dev, uint16_t index); /* not implemented yet */
 };