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

staging: gpib: cec: Fix inconsistent indentation in cec_pci_attach()

This is a cleanup which fixes inconsistent indentation. This is found
with smatch.

drivers/staging/gpib/cec/cec_gpib.c:305
cec_pci_attach() warn: inconsistent indenting

Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Link: https://lore.kernel.org/r/20250703065224.1956688-1-harshit.m.mogalapalli@oracle.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Harshit Mogalapalli and committed by
Greg Kroah-Hartman
bdfa82f5 aa07b790

+1 -1
+1 -1
drivers/staging/gpib/cec/cec_gpib.c
··· 302 302 return -EBUSY; 303 303 304 304 cec_priv->plx_iobase = pci_resource_start(cec_priv->pci_device, 1); 305 - nec_priv->iobase = pci_resource_start(cec_priv->pci_device, 3); 305 + nec_priv->iobase = pci_resource_start(cec_priv->pci_device, 3); 306 306 307 307 isr_flags |= IRQF_SHARED; 308 308 if (request_irq(cec_priv->pci_device->irq, cec_interrupt, isr_flags, DRV_NAME, board)) {