Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2a9cf96 authored by Raghu Gandham's avatar Raghu Gandham Committed by Ralf Baechle
Browse files

MIPS: VPE: Fix compiler warning.



Signed-off-by: default avatarRaghu Gandham <raghu@mips.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 6f9fdeb6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -327,7 +327,8 @@ static void layout_sections(struct module *mod, const Elf_Ehdr * hdr,
			    || (s->sh_flags & masks[m][1])
			    || s->sh_entsize != ~0UL)
				continue;
			s->sh_entsize = get_offset(&mod->core_size, s);
			s->sh_entsize =
				get_offset((unsigned long *)&mod->core_size, s);
		}

		if (m == 0)