The patch titled
     drivers/scsi/advansys.c: linkage fix
has been removed from the -mm tree.  Its filename was
     drivers-scsi-advansysc-linkage-fix.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: drivers/scsi/advansys.c: linkage fix
From: Matthew Wilcox <[EMAIL PROTECTED]>

advansys.c:(.init.text+0x38ea): undefined reference to `isa_register_driver'

When CONFIG_ISA is disabled, the isa_driver support will not be compiled
in.  Define stubs so that we don't get link-time errors.

Signed-off-by: Matthew Wilcox <[EMAIL PROTECTED]>
Cc: Gabriel C <[EMAIL PROTECTED]>
Cc: James Bottomley <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 include/linux/isa.h |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff -puN include/linux/isa.h~drivers-scsi-advansysc-linkage-fix 
include/linux/isa.h
--- a/include/linux/isa.h~drivers-scsi-advansysc-linkage-fix
+++ a/include/linux/isa.h
@@ -22,7 +22,18 @@ struct isa_driver {
 
 #define to_isa_driver(x) container_of((x), struct isa_driver, driver)
 
+#ifdef CONFIG_ISA
 int isa_register_driver(struct isa_driver *, unsigned int);
 void isa_unregister_driver(struct isa_driver *);
+#else
+static inline int isa_register_driver(struct isa_driver *d, unsigned int i)
+{
+       return 0;
+}
+
+static inline void isa_unregister_driver(struct isa_driver *d)
+{
+}
+#endif
 
 #endif /* __LINUX_ISA_H */
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

git-scsi-misc.patch
make-sure-nobodys-leaking-resources.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to