net/mrvl: fix port id type
authorZhiyong Yang <zhiyong.yang@intel.com>
Fri, 13 Oct 2017 13:16:57 +0000 (21:16 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 19:57:48 +0000 (21:57 +0200)
port id should be defined as uint16_t.

Fixes: f8244c6399d9 ("ethdev: increase port id range")

Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
drivers/net/mrvl/mrvl_qos.c
drivers/net/mrvl/mrvl_qos.h

index 796509b..c7b96ef 100644 (file)
@@ -486,7 +486,7 @@ setup_tc(struct pp2_ppio_tc_params *param, uint8_t inqs,
  * @returns 0 in case of success, negative value otherwise.
  */
 int
-mrvl_configure_rxqs(struct mrvl_priv *priv, uint8_t portid,
+mrvl_configure_rxqs(struct mrvl_priv *priv, uint16_t portid,
        uint16_t max_queues)
 {
        size_t i, tc;
index 0fcc85c..90c08e9 100644 (file)
@@ -94,7 +94,7 @@ mrvl_get_qoscfg(const char *key __rte_unused, const char *path,
  * @returns 0 in case of success, negative value otherwise.
  */
 int
-mrvl_configure_rxqs(struct mrvl_priv *priv, uint8_t portid,
+mrvl_configure_rxqs(struct mrvl_priv *priv, uint16_t portid,
                    uint16_t max_queues);
 
 /**