[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200804091023.40068.mpagano@gentoo.org>
Date: Wed, 9 Apr 2008 10:23:39 -0400
From: Mike Pagano <mpagano@...too.org>
To: jens.axboe@...cle.com
Cc: dsd@...too.org, iss_storagedev@...com,
linux kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH] 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@...too.org>
---
drivers/block/cciss.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/block/cciss.c 2008-04-09 10:13:45.000000000 -0400
+++ b/drivers/block/cciss.c 2008-04-09 10:14:11.000000000 -0400
@@ -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)"
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists