diff options
-rw-r--r-- | drivers/net/phy/at803x.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c index f80e19ac6704..fabf11d32d27 100644 --- a/drivers/net/phy/at803x.c +++ b/drivers/net/phy/at803x.c | |||
@@ -192,16 +192,17 @@ static int at803x_probe(struct phy_device *phydev) | |||
192 | { | 192 | { |
193 | struct device *dev = &phydev->dev; | 193 | struct device *dev = &phydev->dev; |
194 | struct at803x_priv *priv; | 194 | struct at803x_priv *priv; |
195 | struct gpio_desc *gpiod_reset; | ||
195 | 196 | ||
196 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); | 197 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
197 | if (!priv) | 198 | if (!priv) |
198 | return -ENOMEM; | 199 | return -ENOMEM; |
199 | 200 | ||
200 | priv->gpiod_reset = devm_gpiod_get(dev, "reset"); | 201 | gpiod_reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH); |
201 | if (IS_ERR(priv->gpiod_reset)) | 202 | if (IS_ERR(gpiod_reset)) |
202 | priv->gpiod_reset = NULL; | 203 | return PTR_ERR(gpiod_reset); |
203 | else | 204 | |
204 | gpiod_direction_output(priv->gpiod_reset, 1); | 205 | priv->gpiod_reset = gpiod_reset; |
205 | 206 | ||
206 | phydev->priv = priv; | 207 | phydev->priv = priv; |
207 | 208 | ||