diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2013-12-19 09:31:44 -0500 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2013-12-24 13:22:58 -0500 |
commit | d18c960430ca341e5c12a023c805ff8fd10032a6 (patch) | |
tree | 4f2b220b987aabc6e61d87185d945a8b848d3920 /drivers/phy/phy-core.c | |
parent | 637d378cea0b463c466a61a6564cdd541d689af5 (diff) |
phy: phy-core.c: remove unnecessary initialization of local variables
There were a few places where variables are initialized unncessarily.
Remove those initializations.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/phy-core.c')
-rw-r--r-- | drivers/phy/phy-core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c index 33fcbcc5561f..645c867c1257 100644 --- a/drivers/phy/phy-core.c +++ b/drivers/phy/phy-core.c | |||
@@ -210,7 +210,7 @@ EXPORT_SYMBOL_GPL(phy_exit); | |||
210 | 210 | ||
211 | int phy_power_on(struct phy *phy) | 211 | int phy_power_on(struct phy *phy) |
212 | { | 212 | { |
213 | int ret = -ENOTSUPP; | 213 | int ret; |
214 | 214 | ||
215 | ret = phy_pm_runtime_get_sync(phy); | 215 | ret = phy_pm_runtime_get_sync(phy); |
216 | if (ret < 0 && ret != -ENOTSUPP) | 216 | if (ret < 0 && ret != -ENOTSUPP) |
@@ -238,7 +238,7 @@ EXPORT_SYMBOL_GPL(phy_power_on); | |||
238 | 238 | ||
239 | int phy_power_off(struct phy *phy) | 239 | int phy_power_off(struct phy *phy) |
240 | { | 240 | { |
241 | int ret = -ENOTSUPP; | 241 | int ret; |
242 | 242 | ||
243 | mutex_lock(&phy->mutex); | 243 | mutex_lock(&phy->mutex); |
244 | if (phy->power_count == 1 && phy->ops->power_off) { | 244 | if (phy->power_count == 1 && phy->ops->power_off) { |
@@ -378,7 +378,7 @@ EXPORT_SYMBOL_GPL(of_phy_simple_xlate); | |||
378 | struct phy *phy_get(struct device *dev, const char *string) | 378 | struct phy *phy_get(struct device *dev, const char *string) |
379 | { | 379 | { |
380 | int index = 0; | 380 | int index = 0; |
381 | struct phy *phy = NULL; | 381 | struct phy *phy; |
382 | 382 | ||
383 | if (string == NULL) { | 383 | if (string == NULL) { |
384 | dev_WARN(dev, "missing string\n"); | 384 | dev_WARN(dev, "missing string\n"); |