summaryrefslogtreecommitdiff
path: root/drivers/cpu
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-05-18 14:30:44 -0600
committerTom Rini <[email protected]>2026-05-18 16:56:07 -0600
commit85b643b7d08c9940481ff8a271e674a9626fa2af (patch)
treef4cc4842a42fbeb518be2fe215a682128404933f /drivers/cpu
parent11e1be868cbf119203445a2a4b1bf6a56dece031 (diff)
parent05f76ca898b4fa98b9f875013447a3533d627ca3 (diff)
Merge branch 'staticize-constify-drivers' into next
This brings in a number of patches from Marek Vasut to clean up cases tree-wide where a struct should be marked as static and const (in some cases only one of these was needed, but the majority are both).
Diffstat (limited to 'drivers/cpu')
-rw-r--r--drivers/cpu/armv8_cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpu/armv8_cpu.c b/drivers/cpu/armv8_cpu.c
index 4eedfe5e2c5..ed87841b723 100644
--- a/drivers/cpu/armv8_cpu.c
+++ b/drivers/cpu/armv8_cpu.c
@@ -124,7 +124,7 @@ int armv8_cpu_fill_madt(const struct udevice *dev, struct acpi_ctx *ctx)
return 0;
}
-struct acpi_ops armv8_cpu_acpi_ops = {
+static struct acpi_ops armv8_cpu_acpi_ops = {
.fill_ssdt = armv8_cpu_fill_ssdt,
.fill_madt = armv8_cpu_fill_madt,
};