* (no subject)
@ 2007-11-23 9:55 ` Bryan Wu
0 siblings, 0 replies; 6+ messages in thread
From: Bryan Wu @ 2007-11-23 9:55 UTC (permalink / raw)
To: jeff, netdev; +Cc: linux-kernel, uclinux-dist-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* (unknown),
@ 2007-11-23 9:55 ` Bryan Wu
0 siblings, 0 replies; 6+ messages in thread
From: Bryan Wu @ 2007-11-23 9:55 UTC (permalink / raw)
To: jeff, netdev; +Cc: linux-kernel, uclinux-dist-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] Blackfin SMC91x Driver: punt CONFIG_BFIN -- we already have CONFIG_BLACKFIN
2007-11-23 9:55 ` (unknown), Bryan Wu
(?)
@ 2007-11-23 9:55 ` Bryan Wu
2007-11-24 3:10 ` Jeff Garzik
-1 siblings, 1 reply; 6+ messages in thread
From: Bryan Wu @ 2007-11-23 9:55 UTC (permalink / raw)
To: jeff, netdev; +Cc: linux-kernel, uclinux-dist-devel, Mike Frysinger, Bryan Wu
From: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
---
drivers/net/Kconfig | 2 +-
drivers/net/smc91x.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index e8d69b0..1437b37 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -888,7 +888,7 @@ config SMC91X
tristate "SMC 91C9x/91C1xxx support"
select CRC32
select MII
- depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
+ depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BLACKFIN
help
This is a driver for SMC's 91x series of Ethernet chipsets,
including the SMC91C94 and the SMC91C111. Say Y if you want it
diff --git a/drivers/net/smc91x.h b/drivers/net/smc91x.h
index db34e1e..07b7f71 100644
--- a/drivers/net/smc91x.h
+++ b/drivers/net/smc91x.h
@@ -55,7 +55,7 @@
#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
-#elif defined(CONFIG_BFIN)
+#elif defined(CONFIG_BLACKFIN)
#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
#define RPC_LSA_DEFAULT RPC_LED_100_10
--
1.5.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] Blackfin EMAC driver: fix bug - NAT doesn't work with bfin_mac driver
2007-11-23 9:55 ` (unknown), Bryan Wu
(?)
(?)
@ 2007-11-23 9:55 ` Bryan Wu
-1 siblings, 0 replies; 6+ messages in thread
From: Bryan Wu @ 2007-11-23 9:55 UTC (permalink / raw)
To: jeff, netdev
Cc: linux-kernel, uclinux-dist-devel, Vitja Makarov, Sonic Zhang,
Bryan Wu
From: Vitja Makarov <vitja.makarov@gmail.com>
https://blackfin.uclinux.org/gf/project/uclinux-dist/forum/?action=ForumBrowse&forum_id=39&thread_id=23114&_forum_action=ForumMessageBrowse
Today I was dealing with the same problem, on my custom bf537 board, and bfin_mac driver.
I found that the problem is in setting ip_summed flag of skbuff structure,
Signed-off-by: Vitja Makarov <vitja.makarov@gmail.com>
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
---
drivers/net/bfin_mac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c
index 0b99b55..eb97175 100644
--- a/drivers/net/bfin_mac.c
+++ b/drivers/net/bfin_mac.c
@@ -676,7 +676,7 @@ static void bf537mac_rx(struct net_device *dev)
skb->protocol = eth_type_trans(skb, dev);
#if defined(BFIN_MAC_CSUM_OFFLOAD)
skb->csum = current_rx_ptr->status.ip_payload_csum;
- skb->ip_summed = CHECKSUM_PARTIAL;
+ skb->ip_summed = CHECKSUM_COMPLETE;
#endif
netif_rx(skb);
--
1.5.3.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] Blackfin SMC91x Driver: punt CONFIG_BFIN -- we already have CONFIG_BLACKFIN
@ 2007-11-24 3:10 ` Jeff Garzik
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2007-11-24 3:10 UTC (permalink / raw)
To: Bryan Wu; +Cc: netdev, linux-kernel, uclinux-dist-devel, Mike Frysinger
Bryan Wu wrote:
> From: Mike Frysinger <michael.frysinger@analog.com>
>
> Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
> ---
> drivers/net/Kconfig | 2 +-
> drivers/net/smc91x.h | 2 +-
applied 1-2 to #upstream-fixes
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] Blackfin SMC91x Driver: punt CONFIG_BFIN -- we already have CONFIG_BLACKFIN
@ 2007-11-24 3:10 ` Jeff Garzik
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Garzik @ 2007-11-24 3:10 UTC (permalink / raw)
To: Bryan Wu
Cc: netdev-u79uwXL29TY76Z2rM5mHXA, Mike Frysinger,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
uclinux-dist-devel-ZG0+EudsQA8dtHy/vicBwGD2FQJk+8+b
Bryan Wu wrote:
> From: Mike Frysinger <michael.frysinger-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
>
> Signed-off-by: Mike Frysinger <michael.frysinger-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Bryan Wu <bryan.wu-OyLXuOCK7orQT0dZR+AlfA@public.gmane.org>
> ---
> drivers/net/Kconfig | 2 +-
> drivers/net/smc91x.h | 2 +-
applied 1-2 to #upstream-fixes
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-11-24 3:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-23 9:55 Bryan Wu
2007-11-23 9:55 ` (unknown), Bryan Wu
2007-11-23 9:55 ` [PATCH 1/2] Blackfin SMC91x Driver: punt CONFIG_BFIN -- we already have CONFIG_BLACKFIN Bryan Wu
2007-11-24 3:10 ` Jeff Garzik
2007-11-24 3:10 ` Jeff Garzik
2007-11-23 9:55 ` [PATCH 2/2] Blackfin EMAC driver: fix bug - NAT doesn't work with bfin_mac driver Bryan Wu
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.