aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/usb/dm9601.c
AgeCommit message (Collapse)AuthorFilesLines
2008-03-25dm9601: add Hirose USB-100 device IDPeter Korsgaard1-0/+4
The Hirose USB-100 adapter uses a dm9601 chip. Reported by Robert Brockway. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2008-01-31Move usbnet.h and rndis_host.h to include/linux/usbJussi Kivilinna1-2/+1
Move headers usbnet.h and rndis_host.h to include/linux/usb and fix includes for drivers/net/usb modules. Headers are moved because rndis_wlan will be outside drivers/net/usb in drivers/net/wireless and yet need these headers. Signed-off-by: Jussi Kivilinna <[email protected]> Acked-by: David Brownell <[email protected]> Signed-off-by: John W. Linville <[email protected]> Signed-off-by: David S. Miller <[email protected]>
2008-01-28dm9601: Consolidate common parts of dm_write_*_asyncPeter Korsgaard1-40/+13
dm_write_async and dm_write_reg_async are almost identical. Move common functionality to dm_write_async_helper (saves ~256b). Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-11-23dm9601: Fix printkPeter Korsgaard1-1/+1
A printk in the error handling code of dm9601.c was missing a newline. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-10-30DM9601: Support for ADMtek ADM8515 NICPeter Korsgaard1-0/+4
Add device ID for the ADMtek ADM8515 USB NIC to the DM9601 driver. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-10-02dm9601: Fix receive MTUPeter Korsgaard1-1/+1
dm9601 didn't take the ethernet header into account when calculating RX MTU, causing packets bigger than 1486 to fail. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-07-02dm9601: Return 0 from bind() on successPeter Korsgaard1-4/+2
Fixup dm9601_bind() so it returns 0 on success rather than just a positive number, as otherwise usbnet doesn't init the status handler. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-07-02dm9601: HW header size shouldn't be included in packet lengthPeter Korsgaard1-2/+3
The dm9601 driver was including the 2 byte hardware header in the packet length, causing the HW to send 2 extra bytes of garbage on tx. Signed-off-by: Peter Korsgaard <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>
2007-05-09Move USB network drivers to drivers/net/usb.Jeff Garzik1-0/+619
It is preferable to group drivers by usage (net, scsi, ATA, ...) than by bus. When reviewing drivers, the [PCI|USB|PCMCIA|...] maintainer is probably less qualified on networking issues than a networking maintainer. Also, from a practical standpoint, chips often appear on multiple buses, which is why we do not put drivers into drivers/pci/net. Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Jeff Garzik <[email protected]>