mirror of
https://github.com/torvalds/linux.git
synced 2025-11-01 00:58:39 +02: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:
|
||
|---|---|---|
| .. | ||
| asm | ||
| crypto | ||
| generated | ||
| linux | ||
| ringtest | ||
| uapi/linux | ||
| vhost_test | ||
| virtio-trace | ||
| xen | ||
| .gitignore | ||
| Makefile | ||
| vhost_net_test.c | ||
| virtio_test.c | ||
| vringh_test.c | ||