X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=wrapper%2Ftracepoint.h;h=6ee421770511a3db5f18fcb5a15c06e947151263;hb=b7d81b1a35cb202148b7f53080e0abcb15f0e2ea;hp=23bc6e2590fedcc21072f0eb2d91dd45d95beb86;hpb=c1b0a62512c0dad3c79f3eb29ed29d3a702f2274;p=lttng-modules.git diff --git a/wrapper/tracepoint.h b/wrapper/tracepoint.h index 23bc6e25..6ee42177 100644 --- a/wrapper/tracepoint.h +++ b/wrapper/tracepoint.h @@ -14,12 +14,6 @@ #include #include -#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35)) - -#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) - -#endif - #ifndef HAVE_KABI_2635_TRACEPOINT #define kabi_2635_tracepoint_probe_register tracepoint_probe_register @@ -113,7 +107,7 @@ static inline struct tracepoint *lttng_tracepoint_ptr_deref(tracepoint_ptr_t *p) return tracepoint_ptr_deref(p); } #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0)) */ -static inline struct tracepoint *lttng_tracepoint_ptr_deref(struct tracepoint **p) +static inline struct tracepoint *lttng_tracepoint_ptr_deref(struct tracepoint * const *p) { return *p; }