[PATCH] cpufreq: mediatek: Fix potential deadlock problem in mtk_cpufreq_set_target
Viresh Kumar
viresh.kumar at linaro.org
Tue May 10 02:09:45 PDT 2022
On 10-05-22, 16:58, Jiabing Wan wrote:
> Yes, I write this line by hand.
> There must be something wrong when copying the subject line.
>
> Maybe I should find some tools in git to avoid it in the future.
Add this to ~/.gitconfig
[pretty]
fixes = Fixes: %h (\"%s\")
And then just do:
$ git log --pretty=fixes c210063b40ac
It shall give you:
Fixes: c210063b40ac ("cpufreq: mediatek: Add opp notification support")
Fixes: 6a17b3876bc8 ("cpufreq: mediatek: Refine mtk_cpufreq_voltage_tracking()")
Fixes: ead858bd128d ("cpufreq: mediatek: Move voltage limits to platform data")
Fixes: f126fbadce92 ("cpufreq: mediatek: Unregister platform device on exit")
Fixes: a3b8d1b12c6b ("cpufreq: mediatek: Fix NULL pointer dereference in mediatek-cpufreq")
Fixes: ffa7bdf7f344 ("cpufreq: mediatek: Make sram regulator optional")
and other patches as we did git log.
OR
Else you could do something like this to just see one commit:
$ git show -s --pretty=oneline --pretty=fixes c210063b40ac
--
viresh
More information about the linux-arm-kernel
mailing list