31 Jul, 2007
1 commit
-
Additional explanation of problems with locking by Alan Cox.
Signed-off-by: Jarek Poplawski
Cc: Alan Cox
Cc: Paul Gortmaker
Cc: Jeff Garzik
Signed-off-by: Jeff Garzik
27 Jul, 2007
1 commit
-
Change INT0 trigger mode from edge-sense mode to level-sense mode,
in order to fix the following timeout error:
'NETDEV WATCHDOG: eth0: transmit timed out'.This patch is required only for the Mappi platform.
Signed-off-by: Hirokazu Takata
Cc: Hitoshi Yamamoto
Cc: Jeff Garzik
Signed-off-by: Andrew Morton
Signed-off-by: Linus Torvalds
26 Apr, 2007
1 commit
-
One less thing for drivers writers to worry about.
Signed-off-by: Arnaldo Carvalho de Melo
Signed-off-by: David S. Miller
02 Dec, 2006
1 commit
-
etherh and a handful of other odd drivers use different macros when building
8390.c. Since we generate a single 8390.o and then link with it, in any
config with both oddball and normal 8390-based driver we will end up with
breakage in at least one of them. Solution: take most of 8390.c into
lib8390.c and have 8390.c, etherh.c and the rest of oddballs #include it.
Helper macros are taken from 8390.h to whoever includes lib8390.c. That
way odd drivers get separate instances of compiled 8390 stuff and stop
stepping on each other's toes. 8390.h gets cleaned up - we don't have
the cascade of ifdefs in there and are left with the stuff that can be
used by any 8390-based driver. Current problems are exactly because of
that cascade - we attempt to choose the set of helpers by looking at config
and that, of course, doesn't work well when we have several sets needed
by various drivers in our config.Signed-off-by: Al Viro
Signed-off-by: Jeff Garzik