The patch titled edac: mv64x60 fix get_property has been removed from the -mm tree. Its filename was edac-mv64x60-fix-get_property.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: edac: mv64x60 fix get_property From: Dave Jiang <djiang@xxxxxxxxxx> Update get_property() call to use of_get_property() in order to fix compile Signed-off-by: Dave Jiang <djiang@xxxxxxxxxx> Signed-off-by: Doug Thompson <dougthompson.com> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/edac/mv64x60_edac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/edac/mv64x60_edac.c~edac-mv64x60-fix-get_property drivers/edac/mv64x60_edac.c --- a/drivers/edac/mv64x60_edac.c~edac-mv64x60-fix-get_property +++ a/drivers/edac/mv64x60_edac.c @@ -612,7 +612,7 @@ static void get_total_mem(struct mv64x60 if (!np) return; - reg = get_property(np, "reg", NULL); + reg = of_get_property(np, "reg", NULL); pdata->total_mem = reg[1]; } _ Patches currently in -mm which might be from djiang@xxxxxxxxxx are origin.patch edac-mv64x60-add-pci-fixup.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