mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
s390/cpum_cf: move stccm_avail()
Function stccm_avail() is defined in a header file and the only user is one single source file. Move this function to the source file where it is also used and remove it from the header file. No functional change. Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Acked-by: Hendrik Brueckner <brueckner@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
parent
345d2a4dcd
commit
7a8f09ac18
@ -99,12 +99,6 @@ static inline void kernel_cpumcf_end(void)
|
||||
preempt_enable();
|
||||
}
|
||||
|
||||
/* Return true if store counter set multiple instruction is available */
|
||||
static inline int stccm_avail(void)
|
||||
{
|
||||
return test_facility(142);
|
||||
}
|
||||
|
||||
int cfset_online_cpu(unsigned int cpu);
|
||||
int cfset_offline_cpu(unsigned int cpu);
|
||||
#endif /* _ASM_S390_CPU_MCF_H */
|
||||
|
@ -821,6 +821,12 @@ static struct pmu cpumf_pmu = {
|
||||
.read = cpumf_pmu_read,
|
||||
};
|
||||
|
||||
/* Return true if store counter set multiple instruction is available */
|
||||
static inline int stccm_avail(void)
|
||||
{
|
||||
return test_facility(142);
|
||||
}
|
||||
|
||||
static int cfset_init(void);
|
||||
static int __init cpumf_pmu_init(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user