Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Randy Dunlap and committed by
Linus Torvalds
ffbbf2da fb9f1f17

+1 -1
+1 -1
include/linux/kernel.h
··· 588 588 589 589 /** 590 590 * BUILD_BUG_ON - break compile if a condition is true. 591 - * @cond: the condition which the compiler should know is false. 591 + * @condition: the condition which the compiler should know is false. 592 592 * 593 593 * If you have some code which relies on certain constants being equal, or 594 594 * other compile-time-evaluated condition, you should use BUILD_BUG_ON to