Lines Matching +full:enable +full:- +full:method
1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2015-2016 Smart Energy Instruments, Inc.
57 const char *method = NULL; in sh_of_smp_probe() local
68 if (!method) in sh_of_smp_probe()
69 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
76 if (!method) { in sh_of_smp_probe()
78 of_property_read_string(np, "enable-method", &method); in sh_of_smp_probe()
82 pr_info("CPU enable method: %s\n", method); in sh_of_smp_probe()
83 if (method) in sh_of_smp_probe()
84 for (; m->method; m++) in sh_of_smp_probe()
85 if (!strcmp(m->method, method)) { in sh_of_smp_probe()
86 register_smp_ops(m->ops); in sh_of_smp_probe()