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

Commit 107c1d57 authored by Amit Pundir's avatar Amit Pundir
Browse files

ANDROID: arm64: Fix a copy-paste error in prior init_thread_info build fix



Fix a really embarrassing copy-paste error introduced
in Change-Id: I13bf03211f0d918d388d1436099d286c10a23e5d
to fix init_thread_info build error.

Fixes: Change-Id: I13bf03211f0d918d388d1436099d286c10a23e5d
       ("ANDROID: arm64: fix undeclared 'init_thread_info' error")
Signed-off-by: default avatarAmit Pundir <amit.pundir@linaro.org>
parent 4b8fc9f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -356,7 +356,7 @@ void __init setup_arch(char **cmdline_p)
#ifdef CONFIG_THREAD_INFO_IN_TASK
	init_task.thread_info.ttbr0 = virt_to_phys(empty_zero_page);
#else
	init_thread_info.ttbr0 = (init_thread_union.thread_info);
	init_thread_info.ttbr0 = virt_to_phys(empty_zero_page);
#endif
#endif