mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
29 lines
1014 B
Diff
29 lines
1014 B
Diff
From 385ab19a6f96a009f2feeb56a62e455379d80385 Mon Sep 17 00:00:00 2001
|
|
From: Alberto Solavagione <albertosolavagione30@gmail.com>
|
|
Date: Wed, 20 Apr 2022 17:15:42 +0200
|
|
Subject: [PATCH 0363/1085] clk-bcm2835: use subsys_initcall for the clock
|
|
driver when IMA is enabled
|
|
|
|
Co-authored-by: Davide Scovotto <scovottodavide@gmail.com>
|
|
Co-developed-by: Davide Scovotto <scovottodavide@gmail.com>
|
|
Signed-off-by: Davide Scovotto <scovottodavide@gmail.com>
|
|
Signed-off-by: Alberto Solavagione <albertosolavagione30@gmail.com>
|
|
---
|
|
drivers/clk/bcm/clk-bcm2835.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/drivers/clk/bcm/clk-bcm2835.c
|
|
+++ b/drivers/clk/bcm/clk-bcm2835.c
|
|
@@ -2438,7 +2438,11 @@ static int __init __bcm2835_clk_driver_i
|
|
{
|
|
return platform_driver_register(&bcm2835_clk_driver);
|
|
}
|
|
+#ifdef CONFIG_IMA
|
|
+subsys_initcall(__bcm2835_clk_driver_init);
|
|
+#else
|
|
postcore_initcall(__bcm2835_clk_driver_init);
|
|
+#endif
|
|
|
|
MODULE_AUTHOR("Eric Anholt <eric@anholt.net>");
|
|
MODULE_DESCRIPTION("BCM2835 clock driver");
|