summaryrefslogtreecommitdiff
path: root/tools/include/linux
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2026-04-02 10:08:03 +0300
committerTakashi Iwai <tiwai@suse.de>2026-04-02 10:08:03 +0300
commitb477ab8893c3e6b4be3074358db830687de7bfff (patch)
tree44d132561eb33087ec533affa648ac0cfaffe326 /tools/include/linux
parenta0dafdbd1049a8ea661a1a471be1b840bd8aed13 (diff)
parente74c38ef6f170179c0029b5744d6a14dfd543108 (diff)
downloadlinux-b477ab8893c3e6b4be3074358db830687de7bfff.tar.xz
Merge tag 'asoc-fix-v7.0-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v7.0 Another smallish batch of fixes and quirks, these days it's AMD that is getting all the DMI entries added. We've got one core fix for a missing list initialisation with auxiliary devices, otherwise it's all fairly small things.
Diffstat (limited to 'tools/include/linux')
-rw-r--r--tools/include/linux/build_bug.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/include/linux/build_bug.h b/tools/include/linux/build_bug.h
index ab2aa97bd8ce..406923bd4846 100644
--- a/tools/include/linux/build_bug.h
+++ b/tools/include/linux/build_bug.h
@@ -32,7 +32,8 @@
/**
* BUILD_BUG_ON_MSG - break compile if a condition is true & emit supplied
* error message.
- * @condition: the condition which the compiler should know is false.
+ * @cond: the condition which the compiler should know is false.
+ * @msg: build-time error message
*
* See BUILD_BUG_ON for description.
*/
@@ -60,6 +61,7 @@
/**
* static_assert - check integer constant expression at build time
+ * @expr: expression to be checked
*
* static_assert() is a wrapper for the C11 _Static_assert, with a
* little macro magic to make the message optional (defaulting to the