summaryrefslogtreecommitdiff
path: root/tools/include/linux/args.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2026-03-16 13:47:14 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2026-03-16 13:47:14 +0300
commitf3f5d52d6bcdf190891601a11910cdd596963c1e (patch)
treeb60d68febfddc2673f4fc0e1c66c0bdce21d1dd3 /tools/include/linux/args.h
parentad6bb64332bb4297110950769ad5af52791e33a2 (diff)
parentf338e77383789c0cae23ca3d48adcc5e9e137e3c (diff)
downloadlinux-f3f5d52d6bcdf190891601a11910cdd596963c1e.tar.xz
Merge 7.0-rc4 into staging-next
We need the staging driver fixes in here to build on top of Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/include/linux/args.h')
-rw-r--r--tools/include/linux/args.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/include/linux/args.h b/tools/include/linux/args.h
index 2e8e65d975c7..14b268f2389a 100644
--- a/tools/include/linux/args.h
+++ b/tools/include/linux/args.h
@@ -22,7 +22,11 @@
#define COUNT_ARGS(X...) __COUNT_ARGS(, ##X, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
/* Concatenate two parameters, but allow them to be expanded beforehand. */
+#ifndef __CONCAT
#define __CONCAT(a, b) a ## b
+#endif
+#ifndef CONCATENATE
#define CONCATENATE(a, b) __CONCAT(a, b)
+#endif
#endif /* _LINUX_ARGS_H */