public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the final tree (devicetree tree related)
@ 2012-04-11  5:11 Stephen Rothwell
  2012-04-11 13:35 ` David Miller
  2012-04-12  0:31 ` Stephen Rothwell
  0 siblings, 2 replies; 21+ messages in thread
From: Stephen Rothwell @ 2012-04-11  5:11 UTC (permalink / raw)
  To: Grant Likely; +Cc: linux-next, linux-kernel, Thomas Abraham

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]

Hi all,

After merging the final tree, today's linux-next build (sparc64 defconfig)
failed like this:

drivers/of/of_mdio.c: In function 'of_mdiobus_register':
drivers/of/of_mdio.c:75:4: error: implicit declaration of function 'irq_of_parse_and_map' [-Werror=implicit-function-declaration]

Caused by commit e46c11b94787 ("of/irq: add empty irq_of_parse_and_map()
for non-dt builds").  SPARC has CONFIG_OF but not CONFIG_OF_IRQ ...

I have reverted that commit for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread
* linux-next: build failure after merge of the final tree (devicetree tree related)
@ 2011-08-04  4:28 Stephen Rothwell
  2011-08-04  6:36 ` Stephen Rothwell
  0 siblings, 1 reply; 21+ messages in thread
From: Stephen Rothwell @ 2011-08-04  4:28 UTC (permalink / raw)
  To: Grant Likely; +Cc: linux-next, linux-kernel, Shawn Guo

[-- Attachment #1: Type: text/plain, Size: 465 bytes --]

Hi all,

After merging the final tree, today's linux-next build (sparc64 defconfig)
failed like this:

drivers/built-in.o: In function `of_alias_scan':
(.init.text+0x6074): undefined reference to `early_init_dt_alloc_memory_arch'

Caused by commit 750f463a749e ("dt: add of_alias_scan and of_alias_get_id").

I have reverted that patch for today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread
* linux-next: build failure after merge of the final tree (devicetree tree related)
@ 2011-03-01  6:54 Stephen Rothwell
  2011-03-01 16:41 ` Grant Likely
  0 siblings, 1 reply; 21+ messages in thread
From: Stephen Rothwell @ 2011-03-01  6:54 UTC (permalink / raw)
  To: Grant Likely; +Cc: linux-next, linux-kernel

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@canb.auug.org.au>
Date: Tue, 1 Mar 2011 17:51:33 +1100
Subject: [PATCH] dt: fix typo

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 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@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

^ permalink raw reply related	[flat|nested] 21+ messages in thread
* linux-next: build failure after merge of the final tree (devicetree tree related)
@ 2010-05-18  7:47 Stephen Rothwell
  2010-05-18 11:52 ` Grant Likely
  0 siblings, 1 reply; 21+ messages in thread
From: Stephen Rothwell @ 2010-05-18  7:47 UTC (permalink / raw)
  To: Grant Likely; +Cc: linux-next, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 352 bytes --]

Hi Grant,

After merging the final tree, yesterday's linux-next build (powerpc
mpc85xx_defconfig) failed like this:

http://kisskb.ellerman.id.au/kisskb/buildresult/2615202/

I suspect that is something to do with the devicetree tree.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2012-04-19 22:12 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-11  5:11 linux-next: build failure after merge of the final tree (devicetree tree related) Stephen Rothwell
2012-04-11 13:35 ` David Miller
2012-04-12  0:31 ` Stephen Rothwell
2012-04-12  0:35   ` Grant Likely
2012-04-12  0:44     ` Stephen Rothwell
2012-04-17  3:23     ` Stephen Rothwell
2012-04-17  3:39       ` Grant Likely
2012-04-17 22:39         ` Grant Likely
2012-04-18  0:48           ` Stephen Rothwell
2012-04-19 22:12             ` Grant Likely
  -- strict thread matches above, loose matches on Subject: below --
2011-08-04  4:28 Stephen Rothwell
2011-08-04  6:36 ` Stephen Rothwell
2011-08-04  6:59   ` Grant Likely
2011-08-04  7:13     ` David Miller
2011-08-04  8:17       ` David Miller
2011-08-04  9:41       ` Grant Likely
2011-03-01  6:54 Stephen Rothwell
2011-03-01 16:41 ` Grant Likely
2010-05-18  7:47 Stephen Rothwell
2010-05-18 11:52 ` Grant Likely
2010-05-18 22:16   ` Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox