/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_POWERPC_CPU_HAS_FEATURE_H #define __ASM_POWERPC_CPU_HAS_FEATURE_H #ifndef __ASSEMBLY__ #include <linux/bug.h> #include <asm/cputable.h>
static inline bool early_cpu_has_feature(unsigned long feature) { return !!((CPU_FTRS_ALWAYS & feature) || (CPU_FTRS_POSSIBLE & cur_cpu_spec->cpu_features & feature)); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Kevin Hao | 32 | 100.00% | 1 | 100.00% |
Total | 32 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Kevin Hao | 61 | 65.59% | 1 | 33.33% |
Aneesh Kumar K.V | 26 | 27.96% | 1 | 33.33% |
Michael Ellerman | 6 | 6.45% | 1 | 33.33% |
Total | 93 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Kevin Hao | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Kevin Hao | 149 | 80.11% | 3 | 37.50% |
Aneesh Kumar K.V | 26 | 13.98% | 1 | 12.50% |
Michael Ellerman | 7 | 3.76% | 2 | 25.00% |
Nicholas Piggin | 3 | 1.61% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 0.54% | 1 | 12.50% |
Total | 186 | 100.00% | 8 | 100.00% |