We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f936969 + a164825 commit 156aa8aCopy full SHA for 156aa8a
1 file changed
drivers/staging/wilc1000/spi.c
@@ -137,10 +137,8 @@ static int wilc_bus_probe(struct spi_device *spi)
137
wilc->rtc_clk = devm_clk_get(&spi->dev, "rtc");
138
if (PTR_ERR_OR_ZERO(wilc->rtc_clk) == -EPROBE_DEFER)
139
goto netdev_cleanup;
140
- return -EPROBE_DEFER;
141
- } else if (!IS_ERR(wilc->rtc_clk)) {
+ else if (!IS_ERR(wilc->rtc_clk))
142
clk_prepare_enable(wilc->rtc_clk);
143
- }
144
145
ret = wilc_of_parse_power_pins(wilc);
146
if (ret)
0 commit comments