From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: message: i2o: fix 64bit build warnings
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
It seems that most of the 64bit build warnings were fixed up in this
driver, but 2 were forgotten. This code is long deleted from newer
kernels, so the fix is not needed there, but make it here in the 3.18
--- /dev/null
+From foo@baz Thu May 4 16:05:52 PDT 2017
+Date: Thu, 04 May 2017 16:05:52 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: scsi: advansys.c: remove DMA build warning message
+
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+The driver was finally converted to the "new" DMA api in newer kernels,
+but here in 3.18, it never will happen, so just shut the warning up for
+now as obviously no one is going to do anything about it.
+
+Cc: Arnd Bergmann <arnd@arndb.de>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/scsi/advansys.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/scsi/advansys.c
++++ b/drivers/scsi/advansys.c
+@@ -68,7 +68,7 @@
+ * 7. advansys_info is not safe against multiple simultaneous callers
+ * 8. Add module_param to override ISA/VLB ioport array
+ */
+-#warning this driver is still not properly converted to the DMA API
++/*#warning this driver is still not properly converted to the DMA API */
+
+ /* Enable driver /proc statistics. */
+ #define ADVANSYS_STATS
mips-elf2ecoff-fix-warning-due-to-dead-code.patch
staging-unisys-fix-build-warning-in-periodic_work.patch
message-i2o-fix-64bit-build-warnings.patch
+scsi-advansys.c-remove-dma-build-warning-message.patch
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: staging: unisys: fix build warning in periodic_work
-This code is long gone in mainline, so the build warning about trying to compare a bool to a value less than 0 isn't there. But fix it in 3.18 to get the build warning list down to a small number.
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+This code is long gone in mainline, so the build warning about trying to
+compare a bool to a value less than 0 isn't there. But fix it in 3.18
+to get the build warning list down to a small number.
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>