Commit 92db9e2e authored by Atin Bainada's avatar Atin Bainada Committed by David S. Miller

net: dsa: qca8k: remove unnecessary (void*) conversions

Pointer variables of (void*) type do not require type cast.
Signed-off-by: default avatarAtin Bainada <hi@atinb.me>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f71be9d0
...@@ -391,7 +391,7 @@ static int ar9331_sw_mbus_init(struct ar9331_sw_priv *priv) ...@@ -391,7 +391,7 @@ static int ar9331_sw_mbus_init(struct ar9331_sw_priv *priv)
static int ar9331_sw_setup_port(struct dsa_switch *ds, int port) static int ar9331_sw_setup_port(struct dsa_switch *ds, int port)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
u32 port_mask, port_ctrl, val; u32 port_mask, port_ctrl, val;
int ret; int ret;
...@@ -439,7 +439,7 @@ static int ar9331_sw_setup_port(struct dsa_switch *ds, int port) ...@@ -439,7 +439,7 @@ static int ar9331_sw_setup_port(struct dsa_switch *ds, int port)
static int ar9331_sw_setup(struct dsa_switch *ds) static int ar9331_sw_setup(struct dsa_switch *ds)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
int ret, i; int ret, i;
...@@ -484,7 +484,7 @@ static int ar9331_sw_setup(struct dsa_switch *ds) ...@@ -484,7 +484,7 @@ static int ar9331_sw_setup(struct dsa_switch *ds)
static void ar9331_sw_port_disable(struct dsa_switch *ds, int port) static void ar9331_sw_port_disable(struct dsa_switch *ds, int port)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
int ret; int ret;
...@@ -527,7 +527,7 @@ static void ar9331_sw_phylink_mac_config(struct dsa_switch *ds, int port, ...@@ -527,7 +527,7 @@ static void ar9331_sw_phylink_mac_config(struct dsa_switch *ds, int port,
unsigned int mode, unsigned int mode,
const struct phylink_link_state *state) const struct phylink_link_state *state)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
int ret; int ret;
...@@ -542,7 +542,7 @@ static void ar9331_sw_phylink_mac_link_down(struct dsa_switch *ds, int port, ...@@ -542,7 +542,7 @@ static void ar9331_sw_phylink_mac_link_down(struct dsa_switch *ds, int port,
unsigned int mode, unsigned int mode,
phy_interface_t interface) phy_interface_t interface)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct ar9331_sw_port *p = &priv->port[port]; struct ar9331_sw_port *p = &priv->port[port];
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
int ret; int ret;
...@@ -562,7 +562,7 @@ static void ar9331_sw_phylink_mac_link_up(struct dsa_switch *ds, int port, ...@@ -562,7 +562,7 @@ static void ar9331_sw_phylink_mac_link_up(struct dsa_switch *ds, int port,
int speed, int duplex, int speed, int duplex,
bool tx_pause, bool rx_pause) bool tx_pause, bool rx_pause)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct ar9331_sw_port *p = &priv->port[port]; struct ar9331_sw_port *p = &priv->port[port];
struct regmap *regmap = priv->regmap; struct regmap *regmap = priv->regmap;
u32 val; u32 val;
...@@ -665,7 +665,7 @@ static void ar9331_do_stats_poll(struct work_struct *work) ...@@ -665,7 +665,7 @@ static void ar9331_do_stats_poll(struct work_struct *work)
static void ar9331_get_stats64(struct dsa_switch *ds, int port, static void ar9331_get_stats64(struct dsa_switch *ds, int port,
struct rtnl_link_stats64 *s) struct rtnl_link_stats64 *s)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct ar9331_sw_port *p = &priv->port[port]; struct ar9331_sw_port *p = &priv->port[port];
spin_lock(&p->stats_lock); spin_lock(&p->stats_lock);
...@@ -676,7 +676,7 @@ static void ar9331_get_stats64(struct dsa_switch *ds, int port, ...@@ -676,7 +676,7 @@ static void ar9331_get_stats64(struct dsa_switch *ds, int port,
static void ar9331_get_pause_stats(struct dsa_switch *ds, int port, static void ar9331_get_pause_stats(struct dsa_switch *ds, int port,
struct ethtool_pause_stats *pause_stats) struct ethtool_pause_stats *pause_stats)
{ {
struct ar9331_sw_priv *priv = (struct ar9331_sw_priv *)ds->priv; struct ar9331_sw_priv *priv = ds->priv;
struct ar9331_sw_port *p = &priv->port[port]; struct ar9331_sw_port *p = &priv->port[port];
spin_lock(&p->stats_lock); spin_lock(&p->stats_lock);
......
...@@ -1756,7 +1756,7 @@ static int qca8k_connect_tag_protocol(struct dsa_switch *ds, ...@@ -1756,7 +1756,7 @@ static int qca8k_connect_tag_protocol(struct dsa_switch *ds,
static int static int
qca8k_setup(struct dsa_switch *ds) qca8k_setup(struct dsa_switch *ds)
{ {
struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv; struct qca8k_priv *priv = ds->priv;
int cpu_port, ret, i; int cpu_port, ret, i;
u32 mask; u32 mask;
......
...@@ -760,7 +760,7 @@ int qca8k_port_fdb_add(struct dsa_switch *ds, int port, ...@@ -760,7 +760,7 @@ int qca8k_port_fdb_add(struct dsa_switch *ds, int port,
const unsigned char *addr, u16 vid, const unsigned char *addr, u16 vid,
struct dsa_db db) struct dsa_db db)
{ {
struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv; struct qca8k_priv *priv = ds->priv;
u16 port_mask = BIT(port); u16 port_mask = BIT(port);
return qca8k_port_fdb_insert(priv, addr, port_mask, vid); return qca8k_port_fdb_insert(priv, addr, port_mask, vid);
...@@ -770,7 +770,7 @@ int qca8k_port_fdb_del(struct dsa_switch *ds, int port, ...@@ -770,7 +770,7 @@ int qca8k_port_fdb_del(struct dsa_switch *ds, int port,
const unsigned char *addr, u16 vid, const unsigned char *addr, u16 vid,
struct dsa_db db) struct dsa_db db)
{ {
struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv; struct qca8k_priv *priv = ds->priv;
u16 port_mask = BIT(port); u16 port_mask = BIT(port);
if (!vid) if (!vid)
...@@ -782,7 +782,7 @@ int qca8k_port_fdb_del(struct dsa_switch *ds, int port, ...@@ -782,7 +782,7 @@ int qca8k_port_fdb_del(struct dsa_switch *ds, int port,
int qca8k_port_fdb_dump(struct dsa_switch *ds, int port, int qca8k_port_fdb_dump(struct dsa_switch *ds, int port,
dsa_fdb_dump_cb_t *cb, void *data) dsa_fdb_dump_cb_t *cb, void *data)
{ {
struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv; struct qca8k_priv *priv = ds->priv;
struct qca8k_fdb _fdb = { 0 }; struct qca8k_fdb _fdb = { 0 };
int cnt = QCA8K_NUM_FDB_RECORDS; int cnt = QCA8K_NUM_FDB_RECORDS;
bool is_static; bool is_static;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment