netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Build fixes for todays next tree
@ 2009-10-12 15:27 Alan Cox
  2009-10-12 15:27 ` [PATCH 1/2] libertas: fix build Alan Cox
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Alan Cox @ 2009-10-12 15:27 UTC (permalink / raw)
  To: netdev, linux-kernel

Couple of networking warns/build fails
---

Alan Cox (2):
      ethoc: fix warning from 32bit build
      libertas: fix build


 drivers/net/ethoc.c                     |    3 ++-
 drivers/net/wireless/libertas/cmdresp.c |    1 +
 2 files changed, 3 insertions(+), 1 deletions(-)

-- 
How do you raise an elephant ...                     with a crane


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

* [PATCH 1/2] libertas: fix build
  2009-10-12 15:27 [PATCH 0/2] Build fixes for todays next tree Alan Cox
@ 2009-10-12 15:27 ` Alan Cox
  2009-10-12 15:27 ` [PATCH 2/2] ethoc: fix warning from 32bit build Alan Cox
  2009-10-13  7:21 ` [PATCH 0/2] Build fixes for todays next tree David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Alan Cox @ 2009-10-12 15:27 UTC (permalink / raw)
  To: netdev, linux-kernel

drivers/net/wireless/libertas/cmdresp.c: In function ‘lbs_process_event’:
drivers/net/wireless/libertas/cmdresp.c:519: error: ‘TASK_INTERRUPTIBLE’
undeclared (first use in this function)
drivers/net/wireless/libertas/cmdresp.c:519: error: (Each undeclared
identifier is reported only once
drivers/net/wireless/libertas/cmdresp.c:519: error: for each function it
appears in.)


Signed-off-by: Alan Cox <alan@linux.intel.com>
---

 drivers/net/wireless/libertas/cmdresp.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/drivers/net/wireless/libertas/cmdresp.c b/drivers/net/wireless/libertas/cmdresp.c
index 47d2b19..9ee8bd1 100644
--- a/drivers/net/wireless/libertas/cmdresp.c
+++ b/drivers/net/wireless/libertas/cmdresp.c
@@ -3,6 +3,7 @@
   * responses as well as events generated by firmware.
   */
 #include <linux/delay.h>
+#include <linux/sched.h>
 #include <linux/if_arp.h>
 #include <linux/netdevice.h>
 #include <asm/unaligned.h>

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

* [PATCH 2/2] ethoc: fix warning from 32bit build
  2009-10-12 15:27 [PATCH 0/2] Build fixes for todays next tree Alan Cox
  2009-10-12 15:27 ` [PATCH 1/2] libertas: fix build Alan Cox
@ 2009-10-12 15:27 ` Alan Cox
  2009-10-13  7:21 ` [PATCH 0/2] Build fixes for todays next tree David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Alan Cox @ 2009-10-12 15:27 UTC (permalink / raw)
  To: netdev, linux-kernel

drivers/net/ethoc.c: In function ‘ethoc_open’:
drivers/net/ethoc.c:667: warning: comparison of distinct pointer types
lacks a cast

Signed-off-by: Alan Cox <alan@linux.intel.com>
---

 drivers/net/ethoc.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/drivers/net/ethoc.c b/drivers/net/ethoc.c
index 96f5b2a..402a507 100644
--- a/drivers/net/ethoc.c
+++ b/drivers/net/ethoc.c
@@ -664,7 +664,8 @@ static int ethoc_open(struct net_device *dev)
 		return ret;
 
 	/* calculate the number of TX/RX buffers, maximum 128 supported */
-	num_bd = min(128, (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ);
+	num_bd = min_t(unsigned int, 
+		128, (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ);
 	priv->num_tx = max(min_tx, num_bd / 4);
 	priv->num_rx = num_bd - priv->num_tx;
 	ethoc_write(priv, TX_BD_NUM, priv->num_tx);

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

* Re: [PATCH 0/2] Build fixes for todays next tree
  2009-10-12 15:27 [PATCH 0/2] Build fixes for todays next tree Alan Cox
  2009-10-12 15:27 ` [PATCH 1/2] libertas: fix build Alan Cox
  2009-10-12 15:27 ` [PATCH 2/2] ethoc: fix warning from 32bit build Alan Cox
@ 2009-10-13  7:21 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2009-10-13  7:21 UTC (permalink / raw)
  To: alan; +Cc: netdev, linux-kernel

From: Alan Cox <alan@linux.intel.com>
Date: Mon, 12 Oct 2009 16:27:17 +0100

> Couple of networking warns/build fails

I'll apply these, thanks Alan.

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

end of thread, other threads:[~2009-10-13  7:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-12 15:27 [PATCH 0/2] Build fixes for todays next tree Alan Cox
2009-10-12 15:27 ` [PATCH 1/2] libertas: fix build Alan Cox
2009-10-12 15:27 ` [PATCH 2/2] ethoc: fix warning from 32bit build Alan Cox
2009-10-13  7:21 ` [PATCH 0/2] Build fixes for todays next tree 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).