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

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: codecs: Fix the error of excessive semicolons

Remove unnecessary semicolons in the function
pm4125_codec_enable_adc and pm4125_micbias_control.

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Link: https://patch.msgid.link/20250930094103.2038-1-tangbin@cmss.chinamobile.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Tang Bin and committed by
Mark Brown
5e537031 3c89238c

+3 -3
+3 -3
sound/soc/codecs/pm4125.c
··· 691 691 0x00); 692 692 pm4125_global_mbias_disable(component); 693 693 break; 694 - }; 694 + } 695 695 696 696 return 0; 697 697 } ··· 756 756 dev_err(component->dev, "%s: Invalid micbias number: %d\n", 757 757 __func__, micb_num); 758 758 return -EINVAL; 759 - }; 759 + } 760 760 761 761 switch (req) { 762 762 case MICB_PULLUP_ENABLE: ··· 799 799 pm4125_global_mbias_disable(component); 800 800 } 801 801 break; 802 - }; 802 + } 803 803 804 804 return 0; 805 805 }