From: Longjun Tang <[email protected]>
Since commit ecca1d63c1ea ("Replace <linux/mod_devicetable.h> by more
specific <linux/device-id/*.h> (headers)"), includes
<linux/device-id/virtio.h> instead of the old <linux/mod_devicetable.h>.
However, tools/virtio/ only had a wrapper for the old mod_devicetable.h,
causing the build to fail with:
./../../include/linux/virtio.h:10:10: fatal error:
linux/device-id/virtio.h: No such file or directory
Add the missing wrapper header that redirects to
../../include/linux/device-id/virtio.h
Signed-off-by: Longjun Tang <[email protected]>
---
tools/virtio/linux/device-id/virtio.h | 2 ++
1 file changed, 2 insertions(+)
create mode 100644 tools/virtio/linux/device-id/virtio.h
diff --git a/tools/virtio/linux/device-id/virtio.h
b/tools/virtio/linux/device-id/virtio.h
new file mode 100644
index 000000000000..3c3e8c514c8d
--- /dev/null
+++ b/tools/virtio/linux/device-id/virtio.h
@@ -0,0 +1,2 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#include <../../include/linux/device-id/virtio.h>
--
2.51.0