tracing: use generic __stringify

Impact: clean up

This removes the custom made STR(x) macros in the tracer and uses
the generic __stringify macro instead.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
This commit is contained in:
Steven Rostedt
2009-03-09 16:00:22 -04:00
parent 2939b0469d
commit 9cc26a261d
3 changed files with 5 additions and 9 deletions

View File

@@ -2,9 +2,7 @@
* This is the place to register all trace points as events.
*/
/* someday this needs to go in a generic header */
#define __STR(x) #x
#define STR(x) __STR(x)
#include <linux/stringify.h>
#include <trace/trace_events.h>