Commit 8697325408d9be18fa24346c346b23fa56c3b190

Authored by Jaswinder Singh Rajput
1 parent 982f8184f9

headers_check fix: linux/virtio_console.h

fix the following 'make headers_check' warning:

  usr/include/linux/virtio_console.h:15: found __[us]{8,16,32,64} type without #include <linux/types.h>

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

include/linux/virtio_console.h
1 1 #ifndef _LINUX_VIRTIO_CONSOLE_H
2 2 #define _LINUX_VIRTIO_CONSOLE_H
  3 +#include <linux/types.h>
3 4 #include <linux/virtio_config.h>
4 5 /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so
5 6 * anyone can use the definitions to implement compatible drivers/servers. */