diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2010-02-06 17:00:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2010-02-06 17:00:16 +0000 |
commit | 846dd11d1cb13bb33374dd8d8b3ada8fdca59405 (patch) | |
tree | eb2aba7efffa9367f0e8e2b025881cae5b739705 /target/linux/ar71xx/files/drivers | |
parent | d19025a586734839115aaefbcd8bee6329e53883 (diff) | |
download | master-187ad058-846dd11d1cb13bb33374dd8d8b3ada8fdca59405.tar.gz master-187ad058-846dd11d1cb13bb33374dd8d8b3ada8fdca59405.tar.bz2 master-187ad058-846dd11d1cb13bb33374dd8d8b3ada8fdca59405.zip |
ar71xx: add missing fields to the ar71xx-ehci driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19534 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/drivers')
-rw-r--r-- | target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c b/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c index 5b929e1db9..01433c2fbe 100644 --- a/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c +++ b/target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c @@ -1,7 +1,7 @@ /* * Bus Glue for Atheros AR71xx built-in EHCI controller. * - * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org> + * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org> * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> * * Parts of this file are based on Atheros' 2.6.15 BSP @@ -152,6 +152,7 @@ static const struct hc_driver ehci_ar71xx_hc_driver = { .urb_enqueue = ehci_urb_enqueue, .urb_dequeue = ehci_urb_dequeue, .endpoint_disable = ehci_endpoint_disable, + .endpoint_reset = ehci_endpoint_reset, .get_frame_number = ehci_get_frame, @@ -163,6 +164,8 @@ static const struct hc_driver ehci_ar71xx_hc_driver = { #endif .relinquish_port = ehci_relinquish_port, .port_handed_over = ehci_port_handed_over, + + .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, }; static const struct hc_driver ehci_ar91xx_hc_driver = { @@ -180,6 +183,7 @@ static const struct hc_driver ehci_ar91xx_hc_driver = { .urb_enqueue = ehci_urb_enqueue, .urb_dequeue = ehci_urb_dequeue, .endpoint_disable = ehci_endpoint_disable, + .endpoint_reset = ehci_endpoint_reset, .get_frame_number = ehci_get_frame, @@ -191,6 +195,8 @@ static const struct hc_driver ehci_ar91xx_hc_driver = { #endif .relinquish_port = ehci_relinquish_port, .port_handed_over = ehci_port_handed_over, + + .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete, }; static int ehci_ar71xx_driver_probe(struct platform_device *pdev) |