Message ID | 76aa8ce6c6526aeb2ccfce04b203b0a24f50a097.1549299188.git.robin.murphy@arm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix Arm system PMU hotplug issues | expand |
diff --git a/kernel/cpu.c b/kernel/cpu.c index 91d5c38eb7e5..c1bd8ed7546e 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -1683,6 +1683,7 @@ int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state, mutex_unlock(&cpuhp_state_mutex); return ret; } +EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance_cpuslocked); int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node, bool invoke)
This is the only member of the family not exported already, but happens to be the one I need to fix a bug in a modular driver. Signed-off-by: Robin Murphy <robin.murphy@arm.com> --- kernel/cpu.c | 1 + 1 file changed, 1 insertion(+)