Cleanup: Move wrapper/ headers to include/wrapper/
[deliverable/lttng-modules.git] / wrapper / uuid.h
diff --git a/wrapper/uuid.h b/wrapper/uuid.h
deleted file mode 100644 (file)
index d8ac53d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
- *
- * wrapper/uuid.h
- *
- * Copyright (C) 2020 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- */
-
-#ifndef _LTTNG_WRAPPER_UUID_H
-#define _LTTNG_WRAPPER_UUID_H
-
-#include <linux/version.h>
-#include <linux/uuid.h>
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0))
-static inline
-void lttng_guid_gen(guid_t *u)
-{
-       return guid_gen(u);
-}
-#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */
-
-typedef uuid_le guid_t;
-
-static inline
-void lttng_guid_gen(guid_t *u)
-{
-       return uuid_le_gen(u);
-}
-#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,7,0)) */
-
-#endif /* _LTTNG_WRAPPER_UUID_H */
This page took 0.023144 seconds and 5 git commands to generate.