Skip to content

Commit 9631042

Browse files
groecktorvalds
authored andcommitted
hexagon: vdso: Fix build failure
Hexagon images fail to build with the following error. arch/hexagon/kernel/vdso.c:57:3: error: use of undeclared identifier 'name' name = "[vdso]", ^ Add the missing '.' to fix the problem. Fixes: 497258d ("mm: remove legacy install_special_mapping() code") Cc: Linus Torvalds <[email protected]> Signed-off-by: Guenter Roeck <[email protected]> Reviewed-by: Brian Cain <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent d0dd066 commit 9631042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/hexagon/kernel/vdso.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
5454
struct vm_area_struct *vma;
5555
struct mm_struct *mm = current->mm;
5656
static struct vm_special_mapping vdso_mapping = {
57-
name = "[vdso]",
57+
.name = "[vdso]",
5858
};
5959

6060
if (mmap_write_lock_killable(mm))

0 commit comments

Comments
 (0)