From 04b1cff48b629973c1f242b7e7ea136fbffc414f Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 24 May 2025 11:28:22 -0600 Subject: [PATCH] efi: Include device-path functions in the EFI API docs Include these function so they can be browsed in the API docs. Exclude END since it causes a warning, which becomes an error: ./include/efi_device_path.h:22: warning: cannot understand function prototype: 'const struct efi_device_path END; ' Signed-off-by: Simon Glass Suggested-by: Heinrich Schuchardt Signed-off-by: Heinrich Schuchardt --- doc/api/efi.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/api/efi.rst b/doc/api/efi.rst index 49814bcf5ea..d16851ca437 100644 --- a/doc/api/efi.rst +++ b/doc/api/efi.rst @@ -184,6 +184,12 @@ Driver binding protocol .. kernel-doc:: include/efi_driver.h :internal: +Device paths +------------ + +.. kernel-doc:: include/efi_device_path.h + :internal: + Unit testing ------------