.. | .. |
---|
451 | 451 | switch (level) { |
---|
452 | 452 | case SND_SOC_BIAS_ON: |
---|
453 | 453 | mgmt1 |= RSTN; |
---|
454 | | - /* fall through */ |
---|
| 454 | + fallthrough; |
---|
455 | 455 | case SND_SOC_BIAS_PREPARE: |
---|
456 | 456 | mgmt1 |= PMADC | PMDAC; |
---|
457 | | - /* fall through */ |
---|
| 457 | + fallthrough; |
---|
458 | 458 | case SND_SOC_BIAS_STANDBY: |
---|
459 | 459 | mgmt1 |= PMVR; |
---|
460 | | - /* fall through */ |
---|
| 460 | + fallthrough; |
---|
461 | 461 | case SND_SOC_BIAS_OFF: |
---|
462 | 462 | default: |
---|
463 | 463 | break; |
---|
.. | .. |
---|
490 | 490 | */ |
---|
491 | 491 | udelay(5000000 / priv->rate); |
---|
492 | 492 | |
---|
493 | | - snd_soc_component_read(component, PW_MGMT1, &mgmt1); |
---|
494 | | - snd_soc_component_read(component, PW_MGMT3, &mgmt3); |
---|
| 493 | + mgmt1 = snd_soc_component_read(component, PW_MGMT1); |
---|
| 494 | + mgmt3 = snd_soc_component_read(component, PW_MGMT3); |
---|
495 | 495 | |
---|
496 | 496 | snd_soc_component_write(component, PW_MGMT1, mgmt1); |
---|
497 | 497 | snd_soc_component_write(component, PW_MGMT3, mgmt3); |
---|