.. | .. |
---|
228 | 228 | switch (bus->bustype) { |
---|
229 | 229 | case SSB_BUSTYPE_SSB: |
---|
230 | 230 | /* Only map the first core for now. */ |
---|
231 | | - /* fallthrough... */ |
---|
| 231 | + fallthrough; |
---|
232 | 232 | case SSB_BUSTYPE_PCMCIA: |
---|
233 | 233 | mmio = ioremap(baseaddr, SSB_CORE_SIZE); |
---|
234 | 234 | break; |
---|
.. | .. |
---|
401 | 401 | #ifdef CONFIG_SSB_DRIVER_PCICORE |
---|
402 | 402 | if (bus->bustype == SSB_BUSTYPE_PCI) { |
---|
403 | 403 | /* Ignore PCI cores on PCI-E cards. |
---|
404 | | - * Ignore PCI-E cores on PCI cards. */ |
---|
| 404 | + * Ignore PCI-E cores on PCI cards. |
---|
| 405 | + */ |
---|
405 | 406 | if (dev->id.coreid == SSB_DEV_PCI) { |
---|
406 | 407 | if (pci_is_pcie(bus->host_pci)) |
---|
407 | 408 | continue; |
---|
.. | .. |
---|
422 | 423 | if (bus->host_pci->vendor == PCI_VENDOR_ID_BROADCOM && |
---|
423 | 424 | (bus->host_pci->device & 0xFF00) == 0x4300) { |
---|
424 | 425 | /* This is a dangling ethernet core on a |
---|
425 | | - * wireless device. Ignore it. */ |
---|
| 426 | + * wireless device. Ignore it. |
---|
| 427 | + */ |
---|
426 | 428 | continue; |
---|
427 | 429 | } |
---|
428 | 430 | } |
---|