blob: dbdd3e60be7d3dfe549f002730f5db6002cbb98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-only */
.text
.global chipset_teardown_car
chipset_teardown_car:
pop %ebx
/* Move the stack pointer to real RAM */
movl post_car_stack_top, %esp
/* Align the stack 16 bytes */
andl $0xfffffff0, %esp
call chipset_teardown_car_main
jmp *%ebx
|