提交 822e14ac 编写于 作者: D David Brownell 提交者: Greg Kroah-Hartman

[PATCH] USB: resolve ethernet gadget build glitch on pxa

This fixes a build error on pxa25x processes with pxa2xx_udc and

        CONFIG_USB_ETH=m
        # CONFIG_USB_ETH_RNDIS is not set

The error is because on that CPU there's no status transfer support
except with RNDIS.  Workaround, enable the RNDIS support too.
Signed-off-by: NIan Campbell <icampbell@arcom.com>
Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 e3bc8b4e
...@@ -2428,6 +2428,7 @@ eth_bind (struct usb_gadget *gadget) ...@@ -2428,6 +2428,7 @@ eth_bind (struct usb_gadget *gadget)
dev->req->complete = eth_setup_complete; dev->req->complete = eth_setup_complete;
/* ... and maybe likewise for status transfer */ /* ... and maybe likewise for status transfer */
#ifdef DEV_CONFIG_CDC
if (dev->status_ep) { if (dev->status_ep) {
dev->stat_req = eth_req_alloc (dev->status_ep, dev->stat_req = eth_req_alloc (dev->status_ep,
STATUS_BYTECOUNT, GFP_KERNEL); STATUS_BYTECOUNT, GFP_KERNEL);
...@@ -2437,6 +2438,7 @@ eth_bind (struct usb_gadget *gadget) ...@@ -2437,6 +2438,7 @@ eth_bind (struct usb_gadget *gadget)
} }
dev->stat_req->context = NULL; dev->stat_req->context = NULL;
} }
#endif
/* finish hookup to lower layer ... */ /* finish hookup to lower layer ... */
dev->gadget = gadget; dev->gadget = gadget;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册