diff options
Diffstat (limited to 'arch/arc/kernel/smp.c')
| -rw-r--r-- | arch/arc/kernel/smp.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/arc/kernel/smp.c b/arch/arc/kernel/smp.c index f46267153ec2..6df9d94a9537 100644 --- a/arch/arc/kernel/smp.c +++ b/arch/arc/kernel/smp.c @@ -23,6 +23,8 @@  #include <linux/cpumask.h>  #include <linux/reboot.h>  #include <linux/irqdomain.h> +#include <linux/export.h> +  #include <asm/processor.h>  #include <asm/setup.h>  #include <asm/mach_desc.h> @@ -30,6 +32,9 @@  #ifndef CONFIG_ARC_HAS_LLSC  arch_spinlock_t smp_atomic_ops_lock = __ARCH_SPIN_LOCK_UNLOCKED;  arch_spinlock_t smp_bitops_lock = __ARCH_SPIN_LOCK_UNLOCKED; + +EXPORT_SYMBOL_GPL(smp_atomic_ops_lock); +EXPORT_SYMBOL_GPL(smp_bitops_lock);  #endif  struct plat_smp_ops  __weak plat_smp_ops; |