Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98b57984 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Marcel Holtmann
Browse files

mrf24j40: Fix en error handling path in 'mrf24j40_probe()'



If this check fails, we must release some resources as done everywhere
else in this function before returning an error code.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: default avatarAlan Ott <alan@signal11.us>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 6a485420
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1330,7 +1330,8 @@ static int mrf24j40_probe(struct spi_device *spi)
	if (spi->max_speed_hz > MAX_SPI_SPEED_HZ) {
		dev_warn(&spi->dev, "spi clock above possible maximum: %d",
			 MAX_SPI_SPEED_HZ);
		return -EINVAL;
		ret = -EINVAL;
		goto err_register_device;
	}

	ret = mrf24j40_hw_init(devrec);