Am 30. März 2023 23:31:56 MESZ schrieb Simon Glass <s...@chromium.org>: >Add a comment for this function in the header. > >Change the function (and the one after) to use __noreturn to keep >checkpatch happy. > >Signed-off-by: Simon Glass <s...@chromium.org> >--- > > arch/x86/include/asm/u-boot-x86.h | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > >diff --git a/arch/x86/include/asm/u-boot-x86.h >b/arch/x86/include/asm/u-boot-x86.h >index 8f38c2d1c601..1610d7237bcd 100644 >--- a/arch/x86/include/asm/u-boot-x86.h >+++ b/arch/x86/include/asm/u-boot-x86.h >@@ -102,8 +102,14 @@ int video_bios_init(void); > */ > int fsp_save_s3_stack(void); > >-void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); >-void board_init_f_r(void) __attribute__ ((noreturn)); >+/** >+ * board_init_f_r_trampoline() - jump to relocated address with new stack >+ * >+ * @sp: New stack pointer to use >+ */ >+void __noreturn board_init_f_r_trampoline(ulong sp); >+ missing function description >+void __noreturn board_init_f_r(void); > ditto > int arch_misc_init(void); >
- [PATCH 02/38] x86: Allow listing MTRRs in SPL Simon Glass
- Re: [PATCH 02/38] x86: Allow listing MTRRs in SPL Heinrich Schuchardt
- [PATCH 03/38] bios_emulator: Add Kconfig and adjust Ma... Simon Glass
- [PATCH 04/38] bios_emulator: Drop VIDEO_IO_OFFSET Simon Glass
- [PATCH 08/38] x86: Show the CPU physical address size ... Simon Glass
- [PATCH 06/38] x86: Set high bits of the mtrr base regi... Simon Glass
- [PATCH 09/38] x86: Correct get_sp() implementation for... Simon Glass
- [PATCH 10/38] x86: Show an error when a BINS exception... Simon Glass
- Re: [PATCH 10/38] x86: Show an error when a BINS ... Heinrich Schuchardt
- [PATCH 07/38] x86: Add a comment for board_init_f_r_tr... Simon Glass
- Re: [PATCH 07/38] x86: Add a comment for board_in... Heinrich Schuchardt
- [PATCH 11/38] acpi: Add a comment to set the acpi tabl... Simon Glass
- [PATCH 15/38] log: Tidy up an ambiguous comment. Simon Glass
- [PATCH 14/38] qfw: Show the file address if available Simon Glass
- Re: [PATCH 14/38] qfw: Show the file address if a... Heinrich Schuchardt
- Re: [PATCH 14/38] qfw: Show the file address ... Simon Glass
- Re: [PATCH 14/38] qfw: Show the file address ... Mark Kettenis
- [PATCH 16/38] video: Allow building video drivers for ... Simon Glass
- [PATCH 17/38] qfw: Set the address of the ACPI tables Simon Glass
- [PATCH 18/38] efi: Show all known UUIDs with CONFIG_CM... Simon Glass
- Re: [PATCH 18/38] efi: Show all known UUIDs with ... Heinrich Schuchardt