* [PATCH] bus: simple-pm-bus: Add CONFIG_ARM_AMBA for amba compatible of_device_id
@ 2024-10-14 0:21 Jisheng Zhang
0 siblings, 0 replies; only message in thread
From: Jisheng Zhang @ 2024-10-14 0:21 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-kernel
I'm trying to run linux on some platforms with small size memory, so
every byte matters. The of_device_id is 196 Bytes on 32bit platforms,
add CONFIG_ARM_AMBA macro around the amba bus' of_device_id so that it
is removed if amba bus isn't used.
Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
---
drivers/bus/simple-pm-bus.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/bus/simple-pm-bus.c b/drivers/bus/simple-pm-bus.c
index 50870c827889..a760500b918a 100644
--- a/drivers/bus/simple-pm-bus.c
+++ b/drivers/bus/simple-pm-bus.c
@@ -121,7 +121,9 @@ static const struct of_device_id simple_pm_bus_of_match[] = {
{ .compatible = "simple-bus", .data = ONLY_BUS },
{ .compatible = "simple-mfd", .data = ONLY_BUS },
{ .compatible = "isa", .data = ONLY_BUS },
+#ifdef CONFIG_ARM_AMBA
{ .compatible = "arm,amba-bus", .data = ONLY_BUS },
+#endif /* CONFIG_ARM_AMBA */
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, simple_pm_bus_of_match);
--
2.45.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-10-14 0:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-14 0:21 [PATCH] bus: simple-pm-bus: Add CONFIG_ARM_AMBA for amba compatible of_device_id Jisheng Zhang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.