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

ssb: pcicore: Fix indentation of comment

Shifted the closing */ to the next line
This is done to maintain code uniformity.

Acked-by: Michael Büsch <m@bues.ch>
Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210428161836.sdrxzcrfiekloucz@kewl-virtual-machine

authored by

Shubhankar Kuranagatti and committed by
Kalle Valo
2a3d830f 5615eb58

+12 -6
+12 -6
drivers/ssb/driver_pcicore.c
··· 55 55 #include <asm/paccess.h> 56 56 /* Probe a 32bit value on the bus and catch bus exceptions. 57 57 * Returns nonzero on a bus exception. 58 - * This is MIPS specific */ 58 + * This is MIPS specific 59 + */ 59 60 #define mips_busprobe32(val, addr) get_dbe((val), ((u32 *)(addr))) 60 61 61 62 /* Assume one-hot slot wiring */ ··· 256 255 }; 257 256 258 257 /* This function is called when doing a pci_enable_device(). 259 - * We must first check if the device is a device on the PCI-core bridge. */ 258 + * We must first check if the device is a device on the PCI-core bridge. 259 + */ 260 260 int ssb_pcicore_plat_dev_init(struct pci_dev *d) 261 261 { 262 262 if (d->bus->ops != &ssb_pcicore_pciops) { ··· 383 381 384 382 /* Ok, ready to run, register it to the system. 385 383 * The following needs change, if we want to port hostmode 386 - * to non-MIPS platform. */ 384 + * to non-MIPS platform. 385 + */ 387 386 ssb_pcicore_controller.io_map_base = (unsigned long)ioremap(SSB_PCI_MEM, 0x04000000); 388 387 set_io_port_base(ssb_pcicore_controller.io_map_base); 389 388 /* Give some time to the PCI controller to configure itself with the new 390 - * values. Not waiting at this point causes crashes of the machine. */ 389 + * values. Not waiting at this point causes crashes of the machine. 390 + */ 391 391 mdelay(10); 392 392 register_pci_controller(&ssb_pcicore_controller); 393 393 } ··· 409 405 return 0; 410 406 411 407 /* The 200-pin BCM4712 package does not bond out PCI. Even when 412 - * PCI is bonded out, some boards may leave the pins floating. */ 408 + * PCI is bonded out, some boards may leave the pins floating. 409 + */ 413 410 if (bus->chip_id == 0x4712) { 414 411 if (bus->chip_package == SSB_CHIPPACK_BCM4712S) 415 412 return 0; ··· 690 685 if (dev->bus->bustype != SSB_BUSTYPE_PCI) { 691 686 /* This SSB device is not on a PCI host-bus. So the IRQs are 692 687 * not routed through the PCI core. 693 - * So we must not enable routing through the PCI core. */ 688 + * So we must not enable routing through the PCI core. 689 + */ 694 690 goto out; 695 691 } 696 692