3c509.c: call SET_NETDEV_DEV for all device types (ISA/ISAPnP/EISA)
authorMatthew Whitehead <tedheadster@gmail.com>
Mon, 29 Apr 2013 21:46:53 +0000 (17:46 -0400)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 30 May 2013 13:35:12 +0000 (14:35 +0100)
commit8e4edf4c3ccf8a041cde6ea0200f58ffcc080e98
treee3eb43c6b16af367a9c7d45e1173380fad0be81d
parent36fced6bf3ea54b198963cac4338d218f3ad0942
3c509.c: call SET_NETDEV_DEV for all device types  (ISA/ISAPnP/EISA)

[ Upstream commit 3b54912f9cd167641b91d4a697bd742f70e534fe ]

The venerable 3c509 driver only sets its device parent in one case, the ISAPnP one.
It does this with the SET_NETDEV_DEV function. It should register with the device
hierarchy in two additional cases: standard (non-PnP) ISA and EISA.

- Currently they appear here:
/sys/devices/virtual/net/eth0 (standard ISA)
/sys/devices/virtual/net/eth1 (EISA)

- Rather, they should instead be here:
/sys/devices/isa/3c509.0/net/eth0 (standard ISA)
/sys/devices/pci0000:00/0000:00:07.0/00:04/net/eth1 (EISA)

Tested on ISA and EISA boards.

Signed-off-by: Matthew Whitehead <tedheadster@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/net/ethernet/3com/3c509.c