Commit a3fa31f1 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] UML patch fixup

When you reverted the stringify changes I sent last time, you missed removing
a comment, which is now grossly wrong.  This patch finishes the job.
parent 35d9ed07
...@@ -4,10 +4,6 @@ ...@@ -4,10 +4,6 @@
/* Indirect stringification. Doing two levels allows the parameter to be a /* Indirect stringification. Doing two levels allows the parameter to be a
* macro itself. For example, compile with -DFOO=bar, __stringify(FOO) * macro itself. For example, compile with -DFOO=bar, __stringify(FOO)
* converts to "bar". * converts to "bar".
*
* The "..." is gcc's cpp vararg macro syntax. It is required because __ALIGN,
* in linkage.h, contains a comma, which when expanded, causes it to look
* like two arguments, which breaks the standard non-vararg stringizer.
*/ */
#define __stringify_1(x) #x #define __stringify_1(x) #x
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment