diff --git a/include/linux/stringify.h b/include/linux/stringify.h index 0b4388356c8730489360d951c858f84245ddd905..841cec8ed525e38eea1fea8c3246fa9e4bbde818 100644 --- a/include/linux/stringify.h +++ b/include/linux/stringify.h @@ -6,7 +6,7 @@ * converts to "bar". */ -#define __stringify_1(x) #x -#define __stringify(x) __stringify_1(x) +#define __stringify_1(x...) #x +#define __stringify(x...) __stringify_1(x) #endif /* !__LINUX_STRINGIFY_H */