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

Commit 178dd42a authored by Simon Sandström's avatar Simon Sandström Committed by Greg Kroah-Hartman
Browse files

staging: pi433: Remove indentation on #ifdef blocks



ifdef blocks should not increase indentation level.

Signed-off-by: default avatarSimon Sandström <simon@nikanor.nu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 845c31de
Loading
Loading
Loading
Loading
+153 −161
Original line number Diff line number Diff line
@@ -988,12 +988,9 @@ u8 rf69_read_reg(struct spi_device *spi, u8 addr)
		 * that module is connected. Therefore no error
		 * handling, just an optional error message...
		 */
			dev_dbg(&spi->dev, "read 0x%x FAILED\n",
				addr);
		dev_dbg(&spi->dev, "read 0x%x FAILED\n", addr);
	else
			dev_dbg(&spi->dev, "read 0x%x from reg 0x%x\n",
				retval,
				addr);
		dev_dbg(&spi->dev, "read 0x%x from reg 0x%x\n", retval, addr);
#endif

	return retval;
@@ -1015,16 +1012,11 @@ int rf69_write_reg(struct spi_device *spi, u8 addr, u8 value)
		 * that module is connected. Therefore no error
		 * handling, just an optional error message...
		 */
			dev_dbg(&spi->dev, "write 0x%x to 0x%x FAILED\n",
				value,
				addr);
		dev_dbg(&spi->dev, "write 0x%x to 0x%x FAILED\n", value, addr);
	else
			dev_dbg(&spi->dev, "wrote 0x%x to reg 0x%x\n",
				value,
				addr);
		dev_dbg(&spi->dev, "wrote 0x%x to reg 0x%x\n", value, addr);
#endif

	return retval;
}