Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e59d2258 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "arch_topology: Fix compilation for possible sibling mask"

parents 8eb089fe 74bbf3b8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -24,6 +24,10 @@ extern struct cputopo_arm cpu_topology[NR_CPUS];
void init_cpu_topology(void);
void store_cpu_topology(unsigned int cpuid);
const struct cpumask *cpu_coregroup_mask(int cpu);
static inline const struct cpumask *cpu_possible_coregroup_mask(int cpu)
{
	return cpu_coregroup_mask(cpu);
}

#include <linux/arch_topology.h>