--- zzzz-none-000/linux-5.4.213/arch/arm64/kernel/cpu_ops.c 2022-09-15 10:04:56.000000000 +0000 +++ miami-7690-761/linux-5.4.213/arch/arm64/kernel/cpu_ops.c 2024-05-29 11:19:50.000000000 +0000 @@ -17,12 +17,18 @@ extern const struct cpu_operations smp_spin_table_ops; extern const struct cpu_operations acpi_parking_protocol_ops; extern const struct cpu_operations cpu_psci_ops; +#ifdef CONFIG_QTI_APSS_ACC +extern const struct cpu_operations smp_a53ss_ops; +#endif const struct cpu_operations *cpu_ops[NR_CPUS] __ro_after_init; static const struct cpu_operations *const dt_supported_cpu_ops[] __initconst = { &smp_spin_table_ops, &cpu_psci_ops, +#ifdef CONFIG_QTI_APSS_ACC + &smp_a53ss_ops, +#endif NULL, };