Commit 80f96fb1 authored by Colin Ian King's avatar Colin Ian King Committed by Kishon Vijay Abraham I

phy: cadence: Sierra: remove redundant initialization of pointer regmap

The pointer regmap is being initialized with a value that is never
read and it is being updated later with a new value from
phy->regmap_common_cdb.  The initialization is redundant and can be
removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 42d06847
...@@ -272,7 +272,7 @@ static int cdns_sierra_phy_init(struct phy *gphy) ...@@ -272,7 +272,7 @@ static int cdns_sierra_phy_init(struct phy *gphy)
{ {
struct cdns_sierra_inst *ins = phy_get_drvdata(gphy); struct cdns_sierra_inst *ins = phy_get_drvdata(gphy);
struct cdns_sierra_phy *phy = dev_get_drvdata(gphy->dev.parent); struct cdns_sierra_phy *phy = dev_get_drvdata(gphy->dev.parent);
struct regmap *regmap = phy->regmap; struct regmap *regmap;
int i, j; int i, j;
struct cdns_reg_pairs *cmn_vals, *ln_vals; struct cdns_reg_pairs *cmn_vals, *ln_vals;
u32 num_cmn_regs, num_ln_regs; u32 num_cmn_regs, num_ln_regs;
......
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