]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
s390/cpum_cf: Move defines from header file to source file
authorThomas Richter <tmricht@linux.ibm.com>
Mon, 1 Jul 2024 08:59:09 +0000 (10:59 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Wed, 7 Aug 2024 18:52:53 +0000 (20:52 +0200)
The macros PERF_CPUM_CF_MAX_CTR and PERF_EVENT_CPUM_CF_DIAG
are used in only one source file arch/s390/kernel/perf_cpum_cf.c.
Move these defines from the header file
arch/s390/include/asm/perf_event.h to the only user.
No functional change.

Signed-off-by: Thomas Richter <tmricht@linux.ibm.com>
Acked-by: Sumanth Korikkar <sumanthk@linux.ibm.com>
Cc: Heiko Carstens <hca@linux.ibm.com>
Cc: Vasily Gorbik <gor@linux.ibm.com>
Cc: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
arch/s390/include/asm/perf_event.h
arch/s390/kernel/perf_cpum_cf.c

index 0fed84fe80d7f31b34c41ac76a4df93a9c5f8581..66200d4a21341b816147be21aae61b1ace990322 100644 (file)
@@ -48,10 +48,6 @@ struct perf_sf_sde_regs {
        unsigned long reserved:63;        /* reserved */
 };
 
-/* Perf PMU definitions for the counter facility */
-#define PERF_CPUM_CF_MAX_CTR           0xffffUL  /* Max ctr for ECCTR */
-#define PERF_EVENT_CPUM_CF_DIAG                0xBC000UL /* Event: Counter sets */
-
 #define perf_arch_fetch_caller_regs(regs, __ip) do {                   \
        (regs)->psw.addr = (__ip);                                      \
        (regs)->gprs[15] = (unsigned long)__builtin_frame_address(0) -  \
index 6968be98af11790ff3f771ec5b2ca8a9a7f9c58c..18b0d025f3a273ae282e1f333dfc91be84f8d8db 100644 (file)
 #include <asm/hwctrset.h>
 #include <asm/debug.h>
 
+/* Perf PMU definitions for the counter facility */
+#define PERF_CPUM_CF_MAX_CTR           0xffffUL  /* Max ctr for ECCTR */
+#define PERF_EVENT_CPUM_CF_DIAG                0xBC000UL /* Event: Counter sets */
+
 enum cpumf_ctr_set {
        CPUMF_CTR_SET_BASIC   = 0,    /* Basic Counter Set */
        CPUMF_CTR_SET_USER    = 1,    /* Problem-State Counter Set */