hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
kernel/drivers/ssb/scan.c
....@@ -228,7 +228,7 @@
228228 switch (bus->bustype) {
229229 case SSB_BUSTYPE_SSB:
230230 /* Only map the first core for now. */
231
- /* fallthrough... */
231
+ fallthrough;
232232 case SSB_BUSTYPE_PCMCIA:
233233 mmio = ioremap(baseaddr, SSB_CORE_SIZE);
234234 break;
....@@ -401,7 +401,8 @@
401401 #ifdef CONFIG_SSB_DRIVER_PCICORE
402402 if (bus->bustype == SSB_BUSTYPE_PCI) {
403403 /* Ignore PCI cores on PCI-E cards.
404
- * Ignore PCI-E cores on PCI cards. */
404
+ * Ignore PCI-E cores on PCI cards.
405
+ */
405406 if (dev->id.coreid == SSB_DEV_PCI) {
406407 if (pci_is_pcie(bus->host_pci))
407408 continue;
....@@ -422,7 +423,8 @@
422423 if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM &&
423424 (bus->host_pci->device & 0xFF00) == 0x4300) {
424425 /* This is a dangling ethernet core on a
425
- * wireless device. Ignore it. */
426
+ * wireless device. Ignore it.
427
+ */
426428 continue;
427429 }
428430 }