usb: u_ether: Fix compile errors
authorPraneeth Bajjuri <praneeth@ti.com>
Thu, 22 Jan 2015 22:38:56 +0000 (16:38 -0600)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 16 Feb 2016 21:52:07 +0000 (13:52 -0800)
commit260bcfb18baa50809c2ac4eb2facc487fe1aecc1
tree13bc7c5dea57c8c6b48669cae7ccc8b770bd3db8
parent4b2db1ab6c58dbafa567d718d09ae8ee1cbee4d5
usb: u_ether: Fix compile errors

commit f1a1823ff24fa4e3412b5078f20021cf40834946
usb: gadget: u_ether: convert into module

changes qlen function definition. and this has to be fixed
accordingly in current u_ether driver.

This patch fixes following compile error in u_ether caused by commit.

drivers/usb/gadget/u_ether.c: In function 'rx_fill':
drivers/usb/gadget/u_ether.c:416:3: error: too few arguments to function 'qlen'
   if (++req_cnt > qlen(dev->gadget))
   ^

drivers/usb/gadget/u_ether.c: In function 'eth_start_xmit':
drivers/usb/gadget/u_ether.c:738:24: error: 'qmult' undeclared (first use in this function)
   if (dev->tx_qlen == (qmult/2)) {

which was caused by commits
commit 79467317949e1621240f632acfb7453783bec2e7
USB: gadget: u_ether: Fix data stall issue in RNDIS tethering mode

commit 68b91e8c54f5c091986c5719631893b10eab760a
usb: u_ether: Add workqueue as bottom half handler for rx data path

Change-Id: Ic4e5a1e08cb688e5a606c7c1895f869d8f887b9f
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
drivers/usb/gadget/function/u_ether.c