diff options
author | amartin@nvidia.com <amartin@nvidia.com> | 2011-12-20 14:56:16 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-03 16:56:29 +0100 |
commit | f9636e8d38abde096fbb32fee5a36bbdb02b7cae (patch) | |
tree | 7b09e54faa06756e07ae31a7a9c08ee4b780492d /drivers/usb/host/r8a66597-hcd.c | |
parent | fb3ef649ed5cf3e5e73aea6ed161cdde37cb7a5f (diff) | |
download | u-boot-imx-f9636e8d38abde096fbb32fee5a36bbdb02b7cae.zip u-boot-imx-f9636e8d38abde096fbb32fee5a36bbdb02b7cae.tar.gz u-boot-imx-f9636e8d38abde096fbb32fee5a36bbdb02b7cae.tar.bz2 |
USB: move keyboard polling into kbd driver
This moves keyboard polling logic from USB HCD drivers into USB
keyboard driver. Remove usb_event_poll() as keyboard polling was
the only user of this API. With this patch USB keyboard works with
EHCI controllers again. Tested on a tegra2 seaboard.
Signed-off-by: Allen Martin <amartin@nvidia.com>
Diffstat (limited to 'drivers/usb/host/r8a66597-hcd.c')
-rw-r--r-- | drivers/usb/host/r8a66597-hcd.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c index db611b6..aa753d8 100644 --- a/drivers/usb/host/r8a66597-hcd.c +++ b/drivers/usb/host/r8a66597-hcd.c @@ -908,12 +908,6 @@ int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer, return 0; } -void usb_event_poll(void) -{ - /* no implement */ - R8A66597_DPRINT("%s\n", __func__); -} - int usb_lowlevel_init(void) { struct r8a66597 *r8a66597 = &gr8a66597; |