net: dsa: qca8k: change simple print to dev variant
authorAnsuel Smith <ansuelsmth@gmail.com>
Fri, 14 May 2021 20:59:51 +0000 (22:59 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 14 May 2021 22:30:21 +0000 (15:30 -0700)
Change pr_err and pr_warn to dev variant.

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/qca8k.c

index cdaf9f8..0b295da 100644 (file)
@@ -701,7 +701,7 @@ qca8k_setup(struct dsa_switch *ds)
 
        /* Make sure that port 0 is the cpu port */
        if (!dsa_is_cpu_port(ds, 0)) {
-               pr_err("port 0 is not the CPU port\n");
+               dev_err(priv->dev, "port 0 is not the CPU port");
                return -EINVAL;
        }
 
@@ -711,7 +711,7 @@ qca8k_setup(struct dsa_switch *ds)
        priv->regmap = devm_regmap_init(ds->dev, NULL, priv,
                                        &qca8k_regmap_config);
        if (IS_ERR(priv->regmap))
-               pr_warn("regmap initialization failed");
+               dev_warn(priv->dev, "regmap initialization failed");
 
        ret = qca8k_setup_mdio_bus(priv);
        if (ret)