From 1ff3c14e5c625f97cb090573b1322643ca395d1f Mon Sep 17 00:00:00 2001 From: Jarkko Sakkinen Date: Thu, 11 Mar 2021 10:56:35 +0800 Subject: [PATCH 2601/2944] x86/sgx: Fix a typo in kernel-doc markup to #31052548 commit bab8c183d1d452f5fdc059aef2f0788bd2986231 upstream. Fix the following kernel-doc warning: arch/x86/include/uapi/asm/sgx.h:19: warning: expecting prototype \ for enum sgx_epage_flags. Prototype was for enum sgx_page_flags instead [ bp: Launder the commit message. ] Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Borislav Petkov Link: https://lkml.kernel.org/r/ca11a4540d981cbd5f026b6cbc8931aa55654e00.1606897462.git.mchehab+huawei@kernel.org Signed-off-by: GuoRui.Yu Reviewed-by: Jia Zhang --- arch/x86/include/uapi/asm/sgx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/include/uapi/asm/sgx.h b/arch/x86/include/uapi/asm/sgx.h index c322102..a6ede68 100644 --- a/arch/x86/include/uapi/asm/sgx.h +++ b/arch/x86/include/uapi/asm/sgx.h @@ -9,7 +9,7 @@ #include /** - * enum sgx_epage_flags - page control flags + * enum sgx_page_flags - page control flags * %SGX_PAGE_MEASURE: Measure the page contents with a sequence of * ENCLS[EEXTEND] operations. */ -- 1.8.3.1