ARM: 9077/1: PLT: Move struct plt_entries definition to header
authorAlex Sverdlin <alexander.sverdlin@nokia.com>
Wed, 5 May 2021 06:56:30 +0000 (07:56 +0100)
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Mon, 7 Jun 2021 11:56:20 +0000 (12:56 +0100)
No functional change, later it will be re-used in several files.

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
arch/arm/include/asm/module.h
arch/arm/kernel/module-plts.c

index 4b0df09..09b9ad5 100644 (file)
@@ -19,6 +19,15 @@ enum {
 };
 #endif
 
+#define PLT_ENT_STRIDE         L1_CACHE_BYTES
+#define PLT_ENT_COUNT          (PLT_ENT_STRIDE / sizeof(u32))
+#define PLT_ENT_SIZE           (sizeof(struct plt_entries) / PLT_ENT_COUNT)
+
+struct plt_entries {
+       u32     ldr[PLT_ENT_COUNT];
+       u32     lit[PLT_ENT_COUNT];
+};
+
 struct mod_plt_sec {
        struct elf32_shdr       *plt;
        int                     plt_count;
index 6e626ab..d330e9e 100644 (file)
 #include <asm/cache.h>
 #include <asm/opcodes.h>
 
-#define PLT_ENT_STRIDE         L1_CACHE_BYTES
-#define PLT_ENT_COUNT          (PLT_ENT_STRIDE / sizeof(u32))
-#define PLT_ENT_SIZE           (sizeof(struct plt_entries) / PLT_ENT_COUNT)
-
 #ifdef CONFIG_THUMB2_KERNEL
 #define PLT_ENT_LDR            __opcode_to_mem_thumb32(0xf8dff000 | \
                                                        (PLT_ENT_STRIDE - 4))
                                                    (PLT_ENT_STRIDE - 8))
 #endif
 
-struct plt_entries {
-       u32     ldr[PLT_ENT_COUNT];
-       u32     lit[PLT_ENT_COUNT];
-};
-
 static bool in_init(const struct module *mod, unsigned long loc)
 {
        return loc - (u32)mod->init_layout.base < mod->init_layout.size;