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.

Merge tag 'pwm/for-6.9-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux

Pull pwm fix from Uwe Kleine-König:
"This contains a single fix for a regression introduced in v5.18-rc1
which made the img pwm driver fail to bind"

* tag 'pwm/for-6.9-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux:
pwm: img: fix pwm clock lookup

+2 -2
+2 -2
drivers/pwm/pwm-img.c
··· 284 284 return PTR_ERR(imgchip->sys_clk); 285 285 } 286 286 287 - imgchip->pwm_clk = devm_clk_get(&pdev->dev, "imgchip"); 287 + imgchip->pwm_clk = devm_clk_get(&pdev->dev, "pwm"); 288 288 if (IS_ERR(imgchip->pwm_clk)) { 289 - dev_err(&pdev->dev, "failed to get imgchip clock\n"); 289 + dev_err(&pdev->dev, "failed to get pwm clock\n"); 290 290 return PTR_ERR(imgchip->pwm_clk); 291 291 } 292 292