]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: dsa: mt7530: Use NULL instead of plain integer
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 2 Apr 2018 23:24:14 +0000 (16:24 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 4 Apr 2018 15:15:49 +0000 (11:15 -0400)
We would be passing 0 instead of NULL as the rsp argument to
mt7530_fdb_cmd(), fix that.

Fixes: b8f126a8d543 ("net-next: dsa: add dsa support for Mediatek MT7530 switch")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Acked-by: Sean Wang <sean.wang@mediatek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/mt7530.c

index d244c41898dd33663b0012ca6e9d644260d1bbdc..80a4dbc3a49959556415a484b4dfd5b239449fb7 100644 (file)
@@ -917,7 +917,7 @@ mt7530_port_fdb_add(struct dsa_switch *ds, int port,
 
        mutex_lock(&priv->reg_mutex);
        mt7530_fdb_write(priv, vid, port_mask, addr, -1, STATIC_ENT);
-       ret = mt7530_fdb_cmd(priv, MT7530_FDB_WRITE, 0);
+       ret = mt7530_fdb_cmd(priv, MT7530_FDB_WRITE, NULL);
        mutex_unlock(&priv->reg_mutex);
 
        return ret;
@@ -933,7 +933,7 @@ mt7530_port_fdb_del(struct dsa_switch *ds, int port,
 
        mutex_lock(&priv->reg_mutex);
        mt7530_fdb_write(priv, vid, port_mask, addr, -1, STATIC_EMP);
-       ret = mt7530_fdb_cmd(priv, MT7530_FDB_WRITE, 0);
+       ret = mt7530_fdb_cmd(priv, MT7530_FDB_WRITE, NULL);
        mutex_unlock(&priv->reg_mutex);
 
        return ret;
@@ -1293,7 +1293,7 @@ mt7530_setup(struct dsa_switch *ds)
        }
 
        /* Flush the FDB table */
-       ret = mt7530_fdb_cmd(priv, MT7530_FDB_FLUSH, 0);
+       ret = mt7530_fdb_cmd(priv, MT7530_FDB_FLUSH, NULL);
        if (ret < 0)
                return ret;