The patch titled acpi: make ec_transaction not extern has been added to the -mm tree. Its filename is acpi-make-ec_transaction-not-extern.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: acpi: make ec_transaction not extern From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix sparse warning: drivers/acpi/ec.c:372:12: warning: function 'ec_transaction' with external linkage has definition Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: "Brown, Len" <len.brown@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/acpi/ec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/acpi/ec.c~acpi-make-ec_transaction-not-extern drivers/acpi/ec.c --- a/drivers/acpi/ec.c~acpi-make-ec_transaction-not-extern +++ a/drivers/acpi/ec.c @@ -369,7 +369,7 @@ int ec_write(u8 addr, u8 val) EXPORT_SYMBOL(ec_write); -extern int ec_transaction(u8 command, +int ec_transaction(u8 command, const u8 *wdata, unsigned wdata_len, u8 *rdata, unsigned rdata_len) { _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch ext4-fix-printk-format-warnings.patch md-fix-printk-format-warnings-seen-on-powerpc64.patch ioc4-fix-printk-format-warning.patch patch-cciss-fix-printk-format-warning.patch acpi-make-ec_transaction-not-extern.patch pvrusb2-use-null-instead-of-0.patch git-ieee1394.patch mtd-fix-kernel-doc-warnings.patch mtd-fix-printk-format-warning.patch com20020-build-fix.patch parisc-fix-module_param-iommu-permission.patch pci-i386-style-cleanups.patch tifm-fix-null-ptr-and-style.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html