Messages in this thread Patch in this message |  | | | From | Alexander Shishkin <> | | Subject | [PATCH 3/4] scsi: fix a header to include linux/types.h | | Date | Wed, 1 Dec 2010 17:10:44 +0200 |
| |
For headers that get exported to userland and make use of u32 style type names, it is advised to include linux/types.h.
This fixes a headers_check warning.
Signed-off-by: Alexander Shishkin <virtuoso@slind.org> CC: Andrew Morton <akpm@linux-foundation.org> CC: "James E.J. Bottomley" <James.Bottomley@suse.de> CC: linux-scsi@vger.kernel.org CC: linux-kernel@vger.kernel.org --- include/scsi/scsi_netlink.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/scsi/scsi_netlink.h b/include/scsi/scsi_netlink.h index 58ce8fe..5cb20cc 100644 --- a/include/scsi/scsi_netlink.h +++ b/include/scsi/scsi_netlink.h @@ -23,7 +23,7 @@ #define SCSI_NETLINK_H #include <linux/netlink.h> - +#include <linux/types.h> /* * This file intended to be included by both kernel and user space -- 1.7.2.1.45.gb66c2
|  |