Commit 0899638688f223fd9e9fee60d662665e11693d12

Authored by Martin Michlmayr
Committed by James Bottomley
1 parent aa9fffbe2c

[SCSI] osd_protocol.h: Add missing #include

include/scsi/osd_protocol.h uses ALIGN() without an #include
<linux/kernel.h>, leading to:
| include/scsi/osd_protocol.h:362: error: implicit declaration of function 'ALIGN'

Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Cc: Stable Tree <stable@kernel.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>

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

include/scsi/osd_protocol.h
... ... @@ -17,6 +17,7 @@
17 17 #define __OSD_PROTOCOL_H__
18 18  
19 19 #include <linux/types.h>
  20 +#include <linux/kernel.h>
20 21 #include <asm/unaligned.h>
21 22 #include <scsi/scsi.h>
22 23