From: Peng Fan Date: Wed, 9 Dec 2020 08:42:03 +0000 (+0800) Subject: tools/virtio: include asm/bug.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=697d1549140cdcdc4cfcd0bf94e62643008972b7;p=linux.git tools/virtio: include asm/bug.h WARN_ON is used in drivers/vhost/vringh.c, to avoid build failure, need include asm/bug.h Signed-off-by: Peng Fan Link: https://lore.kernel.org/r/20201209084205.24062-2-peng.fan@oss.nxp.com Signed-off-by: Michael S. Tsirkin --- diff --git a/tools/virtio/linux/bug.h b/tools/virtio/linux/bug.h index b14c2c3b6b857..813baf13f62a2 100644 --- a/tools/virtio/linux/bug.h +++ b/tools/virtio/linux/bug.h @@ -2,6 +2,8 @@ #ifndef BUG_H #define BUG_H +#include + #define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond)) #define BUILD_BUG_ON(x)