staging: pi433: Remove SET_CHECKED usage from pi433_probe
SET_CHECKED returns from the function on failure and in pi433_probe it is necessary to free the GPIOs and the device on failure. Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
534a2610e1
commit
54fc95a7c5
@ -1124,13 +1124,27 @@ static int pi433_probe(struct spi_device *spi)
|
||||
}
|
||||
|
||||
/* setup the radio module */
|
||||
SET_CHECKED(rf69_set_mode (spi, standby));
|
||||
SET_CHECKED(rf69_set_data_mode (spi, DATAMODUL_MODE_PACKET));
|
||||
SET_CHECKED(rf69_enable_amplifier(spi, MASK_PALEVEL_PA0));
|
||||
SET_CHECKED(rf69_disable_amplifier(spi, MASK_PALEVEL_PA1));
|
||||
SET_CHECKED(rf69_disable_amplifier(spi, MASK_PALEVEL_PA2));
|
||||
SET_CHECKED(rf69_set_output_power_level (spi, 13));
|
||||
SET_CHECKED(rf69_set_antenna_impedance (spi, fiftyOhm));
|
||||
retval = rf69_set_mode(spi, standby);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_set_data_mode(spi, DATAMODUL_MODE_PACKET);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_enable_amplifier(spi, MASK_PALEVEL_PA0);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_disable_amplifier(spi, MASK_PALEVEL_PA1);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_disable_amplifier(spi, MASK_PALEVEL_PA2);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_set_output_power_level(spi, 13);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
retval = rf69_set_antenna_impedance(spi, fiftyOhm);
|
||||
if (retval < 0)
|
||||
goto minor_failed;
|
||||
|
||||
/* determ minor number */
|
||||
retval = pi433_get_minor(device);
|
||||
|
Loading…
Reference in New Issue
Block a user