linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: next-20081114 build failure
@ 2008-11-16 11:30 Stephen Rothwell
  2008-11-16 11:43 ` David Howells
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2008-11-16 11:30 UTC (permalink / raw)
  To: James Morris; +Cc: linux-next, David Howells

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

Hi James, David,

Today's linux-next build (mips defconfig) failed like this:

fs/nfsctl.c:45: error: implicit declaration of function 'current_cred'

This is why you need explicit includes ...
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

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

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

* linux-next: next-20081114 build failure
@ 2008-11-16 11:36 Stephen Rothwell
  2008-11-16 20:42 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2008-11-16 11:36 UTC (permalink / raw)
  To: David S. Miller; +Cc: linux-next, Wang Chen

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

Hi Dave,

Today's linux-next build (mips allmodconfig) failed like this:

drivers/net/dm9000.c:1450: error: expected ')' before ';' token
drivers/net/dm9000.c:1455: error: expected ';' before '}' token

Caused by commit 4cf1653aa90c6320dc8032443b5e322820aa28b1 ("netdevice:
safe convert to netdev_priv() #part-2") which left a closing ')' off one
of the conversions.

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

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

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

* Re: linux-next: next-20081114 build failure
  2008-11-16 11:30 linux-next: next-20081114 build failure Stephen Rothwell
@ 2008-11-16 11:43 ` David Howells
  0 siblings, 0 replies; 4+ messages in thread
From: David Howells @ 2008-11-16 11:43 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: dhowells, James Morris, linux-next

Stephen Rothwell <sfr@canb.auug.org.au> wrote:

> Today's linux-next build (mips defconfig) failed like this:
> 
> fs/nfsctl.c:45: error: implicit declaration of function 'current_cred'
> 
> This is why you need explicit includes ...

Oops.  I really need to cull the number of creds trees I've got.  I didn't
apply your patches to all of them.

David

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

* Re: linux-next: next-20081114 build failure
  2008-11-16 11:36 Stephen Rothwell
@ 2008-11-16 20:42 ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2008-11-16 20:42 UTC (permalink / raw)
  To: sfr; +Cc: linux-next, wangchen

From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Sun, 16 Nov 2008 22:36:12 +1100

> Today's linux-next build (mips allmodconfig) failed like this:
> 
> drivers/net/dm9000.c:1450: error: expected ')' before ';' token
> drivers/net/dm9000.c:1455: error: expected ';' before '}' token

I just checked the following fix into net-next-2.6

Let me know if it doesn't work

dm9000: Fix build error.

Reported by Stephen Rothwell:

drivers/net/dm9000.c:1450: error: expected ')' before ';' token
drivers/net/dm9000.c:1455: error: expected ';' before '}' token

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/dm9000.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/dm9000.c b/drivers/net/dm9000.c
index 0d9a217..bcf9291 100644
--- a/drivers/net/dm9000.c
+++ b/drivers/net/dm9000.c
@@ -1447,7 +1447,7 @@ dm9000_drv_remove(struct platform_device *pdev)
 	platform_set_drvdata(pdev, NULL);
 
 	unregister_netdev(ndev);
-	dm9000_release_board(pdev, (board_info_t *) netdev_priv(ndev);
+	dm9000_release_board(pdev, (board_info_t *) netdev_priv(ndev));
 	free_netdev(ndev);		/* free device structure */
 
 	dev_dbg(&pdev->dev, "released and freed device\n");
-- 
1.5.6.5

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

end of thread, other threads:[~2008-11-16 20:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-16 11:30 linux-next: next-20081114 build failure Stephen Rothwell
2008-11-16 11:43 ` David Howells
  -- strict thread matches above, loose matches on Subject: below --
2008-11-16 11:36 Stephen Rothwell
2008-11-16 20:42 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).