CVE-2026-72260: ASoC: mediatek: mt8192: Check runtime resume during probe
In the Linux kernel, the following vulnerability has been resolved:
ASoC: mediatek: mt8192: Check runtime resume during probe
The MT8192 AFE probe enables runtime PM temporarily while reinitializing the regmap cache from hardware, but it uses pmruntimegetsync() without checking the return value. If runtime resume fails, probe keeps going without the device necessarily being accessible, and pmruntimegetsync() may leave the PM usage count incremented.
The regmapreinitcache() failure path also returns before dropping the temporary PM reference and before clearing pmruntimebypassregctl.
Use pmruntimeresumeandget() so resume failures do not leak a usage count, and clear the temporary bypass flag after dropping the probe PM reference on all regmapreinitcache() outcomes.