Commit 982f8184f9a9251ba4e5c6d79ec32d25c0ad3cc8

Authored by Jaswinder Singh Rajput
1 parent 98be96b853

headers_check fix: linux/virtio_blk.h

fix the following 'make headers_check' warning:

  usr/include/linux/virtio_blk.h:21: 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_blk.h
... ... @@ -2,6 +2,7 @@
2 2 #define _LINUX_VIRTIO_BLK_H
3 3 /* This header is BSD licensed so anyone can use the definitions to implement
4 4 * compatible drivers/servers. */
  5 +#include <linux/types.h>
5 6 #include <linux/virtio_config.h>
6 7  
7 8 /* The ID for virtio_block */