diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2009-11-16 20:49:25 +0200 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 12:01:48 -0600 |
commit | 0899638688f223fd9e9fee60d662665e11693d12 (patch) | |
tree | 36c992ae555edcbcc9891956883e81527815dbaf /include/scsi | |
parent | aa9fffbe2c4db4557248c5c626a85bf3c7867044 (diff) | |
download | kernel_samsung_tuna-0899638688f223fd9e9fee60d662665e11693d12.zip kernel_samsung_tuna-0899638688f223fd9e9fee60d662665e11693d12.tar.gz kernel_samsung_tuna-0899638688f223fd9e9fee60d662665e11693d12.tar.bz2 |
[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>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/osd_protocol.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/osd_protocol.h b/include/scsi/osd_protocol.h index 2cc8e8b..6856612 100644 --- a/include/scsi/osd_protocol.h +++ b/include/scsi/osd_protocol.h @@ -17,6 +17,7 @@ #define __OSD_PROTOCOL_H__ #include <linux/types.h> +#include <linux/kernel.h> #include <asm/unaligned.h> #include <scsi/scsi.h> |