module: fix MIPS module_layout -> module_memory
authorRandy Dunlap <rdunlap@infradead.org>
Tue, 14 Feb 2023 00:54:00 +0000 (16:54 -0800)
committerLuis Chamberlain <mcgrof@kernel.org>
Thu, 9 Mar 2023 20:55:15 +0000 (12:55 -0800)
Correct the struct's field/member name from mod_mem to mem.

Fixes this build error:
../arch/mips/kernel/vpe.c: In function 'vpe_elfload':
../arch/mips/kernel/vpe.c:643:41: error: 'struct module' has no member named 'mod_mem'
  643 |         v->load_addr = alloc_progmem(mod.mod_mem[MOD_TEXT].size);

Fixes: 2ece476a2346 ("module: replace module_layout with module_memory")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Song Liu <song@kernel.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Cc: linux-mips@vger.kernel.org
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
arch/mips/kernel/vpe.c

index ab114c6..5c4adc6 100644 (file)
@@ -640,7 +640,7 @@ static int vpe_elfload(struct vpe *v)
                layout_sections(&mod, hdr, sechdrs, secstrings);
        }
 
-       v->load_addr = alloc_progmem(mod.mod_mem[MOD_TEXT].size);
+       v->load_addr = alloc_progmem(mod.mem[MOD_TEXT].size);
        if (!v->load_addr)
                return -ENOMEM;