mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-29 02:59:13 +00:00

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: ab0727f3dd
("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>
15 lines
330 B
C
15 lines
330 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/export.h>
|
|
|
|
#define MODULE_LICENSE(__MODULE_LICENSE_value) \
|
|
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
|