Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: butterfly: correct alignment

checkpatch complains about the allignment with open parenthesis.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Sudip Mukherjee and committed by
Mark Brown
e71fec73 b12fe725

+5 -6
+5 -6
drivers/spi/spi-butterfly.c
··· 143 143 #include "spi-bitbang-txrx.h" 144 144 145 145 static u32 146 - butterfly_txrx_word_mode0(struct spi_device *spi, 147 - unsigned nsecs, 148 - u32 word, u8 bits) 146 + butterfly_txrx_word_mode0(struct spi_device *spi, unsigned nsecs, u32 word, 147 + u8 bits) 149 148 { 150 149 return bitbang_txrx_be_cpha0(spi, nsecs, 0, 0, word, bits); 151 150 } ··· 222 223 */ 223 224 pp->port = p; 224 225 pd = parport_register_device(p, "spi_butterfly", 225 - NULL, NULL, NULL, 226 - 0 /* FLAGS */, pp); 226 + NULL, NULL, NULL, 227 + 0 /* FLAGS */, pp); 227 228 if (!pd) { 228 229 status = -ENOMEM; 229 230 goto clean0; ··· 274 275 pp->dataflash = spi_new_device(pp->bitbang.master, &pp->info[0]); 275 276 if (pp->dataflash) 276 277 pr_debug("%s: dataflash at %s\n", p->name, 277 - dev_name(&pp->dataflash->dev)); 278 + dev_name(&pp->dataflash->dev)); 278 279 279 280 pr_info("%s: AVR Butterfly\n", p->name); 280 281 butterfly = pp;