| .. | .. |
|---|
| 233 | 233 | |
|---|
| 234 | 234 | switch (bus->chipinfo.id) { |
|---|
| 235 | 235 | case BCMA_CHIP_ID_BCM4313: |
|---|
| 236 | | - /* enable 12 mA drive strenth for 4313 and set chipControl |
|---|
| 237 | | - register bit 1 */ |
|---|
| 236 | + /* |
|---|
| 237 | + * enable 12 mA drive strenth for 4313 and set chipControl |
|---|
| 238 | + * register bit 1 |
|---|
| 239 | + */ |
|---|
| 238 | 240 | bcma_chipco_chipctl_maskset(cc, 0, |
|---|
| 239 | 241 | ~BCMA_CCTRL_4313_12MA_LED_DRIVE, |
|---|
| 240 | 242 | BCMA_CCTRL_4313_12MA_LED_DRIVE); |
|---|
| .. | .. |
|---|
| 246 | 248 | break; |
|---|
| 247 | 249 | case BCMA_CHIP_ID_BCM43224: |
|---|
| 248 | 250 | case BCMA_CHIP_ID_BCM43421: |
|---|
| 249 | | - /* enable 12 mA drive strenth for 43224 and set chipControl |
|---|
| 250 | | - register bit 15 */ |
|---|
| 251 | + /* |
|---|
| 252 | + * enable 12 mA drive strenth for 43224 and set chipControl |
|---|
| 253 | + * register bit 15 |
|---|
| 254 | + */ |
|---|
| 251 | 255 | if (bus->chipinfo.rev == 0) { |
|---|
| 252 | 256 | bcma_cc_maskset32(cc, BCMA_CC_CHIPCTL, |
|---|
| 253 | 257 | ~BCMA_CCTRL_43224_GPIO_TOGGLE, |
|---|
| .. | .. |
|---|
| 500 | 504 | case BCMA_CHIP_ID_BCM53572: |
|---|
| 501 | 505 | /* 5357[ab]0, 43236[ab]0, and 6362b0 */ |
|---|
| 502 | 506 | |
|---|
| 503 | | - /* BCM5357 needs to touch PLL1_PLLCTL[02], |
|---|
| 504 | | - so offset PLL0_PLLCTL[02] by 6 */ |
|---|
| 507 | + /* |
|---|
| 508 | + * BCM5357 needs to touch PLL1_PLLCTL[02], |
|---|
| 509 | + * so offset PLL0_PLLCTL[02] by 6 |
|---|
| 510 | + */ |
|---|
| 505 | 511 | phypll_offset = (bus->chipinfo.id == BCMA_CHIP_ID_BCM5357 || |
|---|
| 506 | 512 | bus->chipinfo.id == BCMA_CHIP_ID_BCM4749 || |
|---|
| 507 | 513 | bus->chipinfo.id == BCMA_CHIP_ID_BCM53572) ? 6 : 0; |
|---|
| .. | .. |
|---|
| 619 | 625 | case BCMA_CHIP_ID_BCM43228: |
|---|
| 620 | 626 | case BCMA_CHIP_ID_BCM43428: |
|---|
| 621 | 627 | /* LCNXN */ |
|---|
| 622 | | - /* PLL Settings for spur avoidance on/off mode, |
|---|
| 623 | | - no on2 support for 43228A0 */ |
|---|
| 628 | + /* |
|---|
| 629 | + * PLL Settings for spur avoidance on/off mode, |
|---|
| 630 | + * no on2 support for 43228A0 |
|---|
| 631 | + */ |
|---|
| 624 | 632 | if (spuravoid == 1) { |
|---|
| 625 | 633 | bcma_pmu_spuravoid_pll_write(cc, BCMA_CC_PMU_PLL_CTL0, |
|---|
| 626 | 634 | 0x01100014); |
|---|