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

pmdomain: Merge branch fixes into next

Merge the pmdomain fixes for v6.6-rc[n] into the next branch, to allow them to
get tested together with the new pmdomain changes that are targeted for v6.7.

Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

+2 -1
+1 -1
drivers/pmdomain/bcm/bcm2835-power.c
··· 175 175 } 176 176 writel(PM_PASSWORD | val, base + reg); 177 177 178 - while (readl(base + reg) & ASB_ACK) { 178 + while (!!(readl(base + reg) & ASB_ACK) == enable) { 179 179 cpu_relax(); 180 180 if (ktime_get_ns() - start >= 1000) 181 181 return -ETIMEDOUT;
+1
drivers/pmdomain/imx/gpc.c
··· 497 497 498 498 pd_pdev->dev.parent = &pdev->dev; 499 499 pd_pdev->dev.of_node = np; 500 + pd_pdev->dev.fwnode = of_fwnode_handle(np); 500 501 501 502 ret = platform_device_add(pd_pdev); 502 503 if (ret) {