[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20250114064726.33079-1-wangyufeng@kylinos.cn>
Date: Tue, 14 Jan 2025 14:47:26 +0800
From: Yufeng Wang <wangyufeng@...inos.cn>
To: "Michael S . Tsirkin" <mst@...hat.com>,
Jason Wang <jasowang@...hat.com>,
Xuan Zhuo <xuanzhuo@...ux.alibaba.com>,
Eugenio Pérez <eperezma@...hat.com>,
Yufeng Wang <wangyufeng@...inos.cn>,
virtualization@...ts.linux.dev
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] tools: virtio/linux/module.h add MODULE_DESCRIPTION() define.
when we build tools/virtio, meet below error information.
cc -g -O2 -Werror -Wno-maybe-uninitialized -Wall
-I. -I../include/ -I ../../usr/include/
-Wno-pointer-sign -fno-strict-overflow
-fno-strict-aliasing -fno-common -MMD
-U_FORTIFY_SOURCE -include ../../include/linux/kconfig.h
-mfunction-return=thunk -fcf-protection=none
-mindirect-branch-register -pthread
-c -o virtio_ring.o ../../drivers/virtio/virtio_ring.c
../../drivers/virtio/virtio_ring.c:3276:20: error:expected declaration specifiers or ‘...’ before string constant
3276 | MODULE_DESCRIPTION("Virtio ring implementation");
|
Fixes: <ab0727f3ddb8>("virtio: add missing MODULE_DESCRIPTION() macros")
also add MODULE_DESCRIPTION() define for virtio test.
Signed-off-by: Yufeng Wang <wangyufeng@...inos.cn>
---
tools/virtio/linux/module.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tools/virtio/linux/module.h b/tools/virtio/linux/module.h
index 9dfa96fea2b2..b91681fc1571 100644
--- a/tools/virtio/linux/module.h
+++ b/tools/virtio/linux/module.h
@@ -5,3 +5,10 @@
static __attribute__((unused)) const char *__MODULE_LICENSE_name = \
__MODULE_LICENSE_value
+#ifndef MODULE_AUTHOR
+#define MODULE_AUTHOR(x)
+#endif
+
+#ifndef MODULE_DESCRIPTION
+#define MODULE_DESCRIPTION(x)
+#endif
--
2.34.1
Powered by blists - more mailing lists