From a984eb367c032dbe2577f01238c3d1268526be70 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 19:24:38 +0100 Subject: Clang-tidy fixes --- include/arch/x86_64/linux/dm-log-userspace.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'include/arch/x86_64/linux/dm-log-userspace.h') diff --git a/include/arch/x86_64/linux/dm-log-userspace.h b/include/arch/x86_64/linux/dm-log-userspace.h index 4b7b2a2a..68aba29e 100644 --- a/include/arch/x86_64/linux/dm-log-userspace.h +++ b/include/arch/x86_64/linux/dm-log-userspace.h @@ -380,9 +380,8 @@ * User-space should always use DM_ULOG_REQUEST_TYPE to acquire the * request type from the 'request_type' field to maintain forward compatibility. */ -#define DM_ULOG_REQUEST_MASK 0xFF -#define DM_ULOG_REQUEST_TYPE(request_type) \ - (DM_ULOG_REQUEST_MASK & (request_type)) +#define DM_ULOG_REQUEST_MASK 0xFF +#define DM_ULOG_REQUEST_TYPE(request_type) (DM_ULOG_REQUEST_MASK & (request_type)) /* * DM_ULOG_REQUEST_VERSION is incremented when there is a -- cgit v1.2.3