Message ID | 20200613073755.15906-1-geert+renesas@glider.be (mailing list archive) |
---|---|
State | Accepted |
Commit | 27784a256c2a453d891c0aaff84c3ac3f2e8a5a0 |
Headers | show |
Series | spi: uapi: spidev: Use TABs for alignment | expand |
On Sat, Jun 13, 2020 at 09:37:54AM +0200, Geert Uytterhoeven wrote: > The UAPI <linux/spi/spidev.h> uses TABs for alignment. > Convert the recently introduced spaces to TABs to restore consistency. > > Fixes: f30e8cbdf8ee1a43 ("spi: tools: Add macro definitions to fix build errors") That commit doesn't exist? I think you mean 7bb64402a092136.
Hi Mark, On Mon, Jun 15, 2020 at 4:42 PM Mark Brown <broonie@kernel.org> wrote: > On Sat, Jun 13, 2020 at 09:37:54AM +0200, Geert Uytterhoeven wrote: > > The UAPI <linux/spi/spidev.h> uses TABs for alignment. > > Convert the recently introduced spaces to TABs to restore consistency. > > > > Fixes: f30e8cbdf8ee1a43 ("spi: tools: Add macro definitions to fix build errors") > > That commit doesn't exist? I think you mean 7bb64402a092136. Indeed, I stand corrected. Gr{oetje,eeting}s, Geert
On Sat, 13 Jun 2020 09:37:54 +0200, Geert Uytterhoeven wrote: > The UAPI <linux/spi/spidev.h> uses TABs for alignment. > Convert the recently introduced spaces to TABs to restore consistency. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: uapi: spidev: Use TABs for alignment commit: 27784a256c2a453d891c0aaff84c3ac3f2e8a5a0 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/include/uapi/linux/spi/spidev.h b/include/uapi/linux/spi/spidev.h index 9390615d52f0c1cb..d56427c0b3e05953 100644 --- a/include/uapi/linux/spi/spidev.h +++ b/include/uapi/linux/spi/spidev.h @@ -48,10 +48,10 @@ #define SPI_TX_QUAD 0x200 #define SPI_RX_DUAL 0x400 #define SPI_RX_QUAD 0x800 -#define SPI_CS_WORD 0x1000 -#define SPI_TX_OCTAL 0x2000 -#define SPI_RX_OCTAL 0x4000 -#define SPI_3WIRE_HIZ 0x8000 +#define SPI_CS_WORD 0x1000 +#define SPI_TX_OCTAL 0x2000 +#define SPI_RX_OCTAL 0x4000 +#define SPI_3WIRE_HIZ 0x8000 /*---------------------------------------------------------------------------*/
The UAPI <linux/spi/spidev.h> uses TABs for alignment. Convert the recently introduced spaces to TABs to restore consistency. Fixes: f30e8cbdf8ee1a43 ("spi: tools: Add macro definitions to fix build errors") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- include/uapi/linux/spi/spidev.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)