From: Randy Dunlap Date: Mon, 31 Jan 2011 17:29:14 +0000 (-0800) Subject: kernel.h: fix kernel-doc warning X-Git-Tag: Ubuntu-5.10.0-12.13~25570 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=ffbbf2da9e578dc7b7ae4f945412c4b74f54b20e;p=mirror_ubuntu-hirsute-kernel.git kernel.h: fix kernel-doc warning Fix kernel-doc warning in kernel.h from commit 7ef88ad56145 ("BUILD_BUG_ON: make it handle more cases"): Warning(include/linux/kernel.h:605): No description found for parameter 'condition' Warning(include/linux/kernel.h:605): Excess function parameter 'cond' description in 'BUILD_BUG_ON' Signed-off-by: Randy Dunlap Signed-off-by: Linus Torvalds --- diff --git a/include/linux/kernel.h b/include/linux/kernel.h index e2f4d6af2125..2fe6e84894a4 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -588,7 +588,7 @@ struct sysinfo { /** * BUILD_BUG_ON - break compile if a condition is true. - * @cond: the condition which the compiler should know is false. + * @condition: the condition which the compiler should know is false. * * If you have some code which relies on certain constants being equal, or * other compile-time-evaluated condition, you should use BUILD_BUG_ON to