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 'pmdomain-v6.13-rc2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm

Pull pmdomain fix from Ulf Hansson:

- imx8mp-blk-ctrl: Add missing loop break condition

* tag 'pmdomain-v6.13-rc2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm:
pmdomain: imx8mp-blk-ctrl: add missing loop break condition

+1 -1
+1 -1
drivers/pmdomain/imx/imx8mp-blk-ctrl.c
··· 770 770 771 771 of_genpd_del_provider(pdev->dev.of_node); 772 772 773 - for (i = 0; bc->onecell_data.num_domains; i++) { 773 + for (i = 0; i < bc->onecell_data.num_domains; i++) { 774 774 struct imx8mp_blk_ctrl_domain *domain = &bc->domains[i]; 775 775 776 776 pm_genpd_remove(&domain->genpd);