From: Mike Pagano <mpagano@gentoo.org> Date: Fri, 11 Apr 2008 04:29:26 +0000 (-0700) Subject: cciss: error: implicit declaration of function 'sg_init_table' X-Git-Tag: firefly_0821_release~21683 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=231bc2a222411f43bfb0fbb6d64c0f34c7b1039f;p=firefly-linux-kernel-4.4.55.git 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> --- diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 55bd35c0f082..9c9627e8e334 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -50,6 +50,7 @@ #include <scsi/sg.h> #include <scsi/scsi_ioctl.h> #include <linux/cdrom.h> +#include <linux/scatterlist.h> #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) #define DRIVER_NAME "HP CISS Driver (v 3.6.14)"