From 1f93a7dfd1f8d5ff7a5c53246c7534fe2332d6f4 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Mon, 11 Dec 2023 02:46:07 +0000 Subject: [PATCH] add audio --- kernel/arch/x86/purgatory/stack.S | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/kernel/arch/x86/purgatory/stack.S b/kernel/arch/x86/purgatory/stack.S index 50a4147..1ef507c 100644 --- a/kernel/arch/x86/purgatory/stack.S +++ b/kernel/arch/x86/purgatory/stack.S @@ -1,19 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ /* * purgatory: stack * * Copyright (C) 2014 Red Hat Inc. - * - * This source code is licensed under the GNU General Public License, - * Version 2. See the file COPYING for more details. */ + +#include <linux/linkage.h> /* A stack for the loaded kernel. * Separate and in the data section so it can be prepopulated. */ .data .balign 4096 - .globl stack, stack_end -stack: +SYM_DATA_START(stack) .skip 4096 -stack_end: +SYM_DATA_END_LABEL(stack, SYM_L_GLOBAL, stack_end) -- Gitblit v1.6.2