The patch titled i5000_edac: no need to __stringify() KBUILD_BASENAME has been added to the -mm tree. Its filename is i5000_edac-no-need-to-__stringify-kbuild_basename.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i5000_edac: no need to __stringify() KBUILD_BASENAME From: "Darrick J. Wong" <djwong@xxxxxxxxxx> The i5000_edac driver's PCI registration structure has the name ""i5000_edac"" (with extra set of double-quotes) which is probably not intentional. Get rid of __stringify. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Cc: Doug Thompson <norsk5@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/edac/i5000_edac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/edac/i5000_edac.c~i5000_edac-no-need-to-__stringify-kbuild_basename drivers/edac/i5000_edac.c --- a/drivers/edac/i5000_edac.c~i5000_edac-no-need-to-__stringify-kbuild_basename +++ a/drivers/edac/i5000_edac.c @@ -1462,7 +1462,7 @@ MODULE_DEVICE_TABLE(pci, i5000_pci_tbl); * */ static struct pci_driver i5000_driver = { - .name = __stringify(KBUILD_BASENAME), + .name = KBUILD_BASENAME, .probe = i5000_init_one, .remove = __devexit_p(i5000_remove_one), .id_table = i5000_pci_tbl, _ Patches currently in -mm which might be from djwong@xxxxxxxxxx are git-hwmon.patch mptbase-reset-ioc-initiator-during-pci-resume.patch i5000_edac-no-need-to-__stringify-kbuild_basename.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