Commit 84ad40ebbaeb22fc665b1f307d32128c46e8d42d

Authored by Jaswinder Singh Rajput
1 parent 0fe5a8fe0c

headers_check fix: linux/if_strip.h

fix the following 'make headers_check' warning:

  usr/include/linux/if_strip.h:22: 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 2 additions and 0 deletions Side-by-side Diff

include/linux/if_strip.h
... ... @@ -18,6 +18,8 @@
18 18 #ifndef __LINUX_STRIP_H
19 19 #define __LINUX_STRIP_H
20 20  
  21 +#include <linux/types.h>
  22 +
21 23 typedef struct {
22 24 __u8 c[6];
23 25 } MetricomAddress;