Hi Grant, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/mtd/nand/pasemi_nand.c:221: error: variable 'pasemi_nand_driver' has initializer but incomplete type drivers/mtd/nand/pasemi_nand.c:223: error: unknown field 'driver' specified in initializer drivers/mtd/nand/pasemi_nand.c:223: error: extra brace group at end of initializer drivers/mtd/nand/pasemi_nand.c:223: error: (near initialization for 'pasemi_nand_driver') drivers/mtd/nand/pasemi_nand.c:227: warning: excess elements in struct initializer drivers/mtd/nand/pasemi_nand.c:227: warning: (near initialization for 'pasemi_nand_driver') drivers/mtd/nand/pasemi_nand.c:228: error: unknown field 'probe' specified in initializer drivers/mtd/nand/pasemi_nand.c:228: warning: excess elements in struct initializer drivers/mtd/nand/pasemi_nand.c:228: warning: (near initialization for 'pasemi_nand_driver') drivers/mtd/nand/pasemi_nand.c:229: error: unknown field 'remove' specified in initializer drivers/mtd/nand/pasemi_nand.c:229: warning: excess elements in struct initializer drivers/mtd/nand/pasemi_nand.c:229: warning: (near initialization for 'pasemi_nand_driver') drivers/mtd/nand/pasemi_nand.c: In function 'pasemi_nand_init': drivers/mtd/nand/pasemi_nand.c:234: warning: passing argument 1 of 'platform_driver_register' from incompatible pointer type include/linux/platform_device.h:124: note: expected 'struct platform_driver *' but argument is of type 'struct latform_driver *' drivers/mtd/nand/pasemi_nand.c: In function 'pasemi_nand_exit': drivers/mtd/nand/pasemi_nand.c:240: warning: passing argument 1 of 'platform_driver_unregister' from incompatible pointer type include/linux/platform_device.h:125: note: expected 'struct platform_driver *' but argument is of type 'struct latform_driver *' Caused by commit ac677e82cd5c031a010458304821bb8b1e47cf24 ("dt: Eliminate of_platform_{,un}register_driver"). Looks like a typo to me :-) I applied this patch for today: From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Tue, 1 Mar 2011 17:51:33 +1100 Subject: [PATCH] dt: fix typo Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- drivers/mtd/nand/pasemi_nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/pasemi_nand.c b/drivers/mtd/nand/pasemi_nand.c index 5a0f1cf..59efa82 100644 --- a/drivers/mtd/nand/pasemi_nand.c +++ b/drivers/mtd/nand/pasemi_nand.c @@ -218,7 +218,7 @@ static const struct of_device_id pasemi_nand_match[] = MODULE_DEVICE_TABLE(of, pasemi_nand_match); -static struct latform_driver pasemi_nand_driver = +static struct platform_driver pasemi_nand_driver = { .driver = { .name = (char*)driver_name, -- 1.7.4.1 -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html