cciss: error: implicit declaration of function 'sg_init_table'

This patch adds the missing include directive <linux/scatterlist.h> to the
cciss.c source file.   This was discovered by our release team when building
the kernel for the Alpha architecture.

Errors were found as references to functions 'sg_init_table' and 'sg_page' do
not exist without the include for Alpha.

Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Cc: Jens Axboe <jens.axboe@oracle.com>
Cc: <mike.miller@hp.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Mike Pagano and committed by Linus Torvalds 231bc2a2 ad28a07b

+1
+1
drivers/block/cciss.c
··· 50 50 #include <scsi/sg.h> 51 51 #include <scsi/scsi_ioctl.h> 52 52 #include <linux/cdrom.h> 53 + #include <linux/scatterlist.h> 53 54 54 55 #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) 55 56 #define DRIVER_NAME "HP CISS Driver (v 3.6.14)"