- Sep 01, 2009
-
-
Stephen Hemminger authored
In a couple of cases collapse some extra code like: int retval = NETDEV_TX_OK; ... return retval; into return NETDEV_TX_OK; Signed-off-by:
Stephen Hemminger <shemminger@vyatta.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Apr 24, 2009
-
-
Alexander Beregalov authored
Fix this build error caused by 362b76ed "8390p: Get rid of init_module/cleanup_module" drivers/net/8390p.c:94:19: error: invalid suffix "p_init_module" on integer constant drivers/net/8390p.c:94: error: expected identifier or '(' before numeric constant drivers/net/8390p.c:99:20: error: invalid suffix "p_cleanup_module" on integer constant Signed-off-by:
Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Apr 22, 2009
-
-
Mateusz Mandera authored
This trivial patch just "gets rid of" init_module and cleanup_module from drivers/net/8390p.c Signed-off-by:
Mateusz Mandera <ormi.linux@gmail.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Apr 16, 2009
-
-
Alexander Beregalov authored
Remove compat_net_dev_ops code and use struct net_device_ops instead of it. Signed-off-by:
Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Jan 11, 2009
-
-
Stephen Hemminger authored
Many drivers lost the ability to set ethernet address accidently during the net_device_ops conversion. Signed-off-by:
Stephen Hemminger <shemminger@vyatta.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Dec 15, 2008
-
-
David S. Miller authored
Based upon a report from Randy Dunlap. The compat netdev ops assignments need to happen in 8390.c and 8390p.c, not lib8390.c, as only the type specific code can assign the correct function pointers. Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Nov 25, 2008
-
-
Stephen Hemminger authored
Fix the defactoring of ei_XXX functions in 8390 and 8390p. Remove the tx_timeout hack since no driver including the 3c503 overrides tx_timeout at this time, looks like a legacy thing. Also, since several drivers all have same hooks, provide common netdev_ops. Signed-off-by:
Stephen Hemminger <shemminger@vyatta.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
-
- Aug 07, 2008
-
-
Gustavo Padovan authored
Fix all errors and warnings reported by checkpatch.pl Signed-off-by:
Gustavo F. Padovan <gustavo@las.ic.unicamp.br> Signed-off-by:
Jeff Garzik <jgarzik@redhat.com>
-
Gustavo Padovan authored
We don't need this into a void function. Signed-off-by:
Gustavo F. Padovan <gustavo@las.ic.unicamp.br> Signed-off-by:
Jeff Garzik <jgarzik@redhat.com>
-
- Jul 04, 2008
-
-
Alan Cox authored
Only a few ISA controllers need the pausing version of the 8390 core while PCMCIA, later ISA and PCI do not. More importantly the ISA delays can break non ISA boxes so we must use a different build of 8390.c for the two sets of controllers. No changes since last time as all the points of concerns raised proved to be invalid Signed-off-by:
Alan Cox <alan@redhat.com> Signed-off-by:
Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Jeff Garzik <jgarzik@redhat.com>
-