Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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");
|

to fix, add MODULE_DESCRIPTION() define for virtio test.

Fixes: ab0727f3ddb8 ("virtio: add missing MODULE_DESCRIPTION() macros")
Signed-off-by: Yufeng Wang <wangyufeng@kylinos.cn>
Message-Id: <20250114064726.33079-1-wangyufeng@kylinos.cn>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

authored by

Yufeng Wang and committed by
Michael S. Tsirkin
ec05544c 83dc0370

+7
+7
tools/virtio/linux/module.h
··· 5 5 static __attribute__((unused)) const char *__MODULE_LICENSE_name = \ 6 6 __MODULE_LICENSE_value 7 7 8 + #ifndef MODULE_AUTHOR 9 + #define MODULE_AUTHOR(x) 10 + #endif 11 + 12 + #ifndef MODULE_DESCRIPTION 13 + #define MODULE_DESCRIPTION(x) 14 + #endif