From: Mathieu Desnoyers Date: Mon, 13 Apr 2020 20:54:54 +0000 (-0400) Subject: probes lttng: remove compatibility code X-Git-Tag: for-upstreaming-review-1~26 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;ds=sidebyside;h=265eca02b48054bbc719247875d79eabfd82a69e;p=lttng-modules.git probes lttng: remove compatibility code --- diff --git a/probes/lttng.c b/probes/lttng.c index 7a2a74a1..ae7dce64 100644 --- a/probes/lttng.c +++ b/probes/lttng.c @@ -92,17 +92,9 @@ static const struct file_operations lttng_logger_operations = { .write = lttng_logger_write, }; -/* - * Linux 5.6 introduced a separate proc_ops struct for /proc operations - * to decouple it from the vfs. - */ -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)) static const struct proc_ops lttng_logger_proc_ops = { .proc_write = lttng_logger_write, }; -#else -#define lttng_logger_proc_ops lttng_logger_operations -#endif static struct miscdevice logger_dev = { .minor = MISC_DYNAMIC_MINOR,