mirror of
https://github.com/apache/nuttx.git
synced 2026-08-07 13:37:18 +00:00
drivers/usbdev/rndis.c: Fixes copy/paste error introduced in last rndis change.
This commit is contained in:
parent
7a0a032cd9
commit
9fa5bd8df4
1 changed files with 2 additions and 2 deletions
|
|
@ -1940,8 +1940,8 @@ static int usbclass_copy_epdesc(int epid, FAR struct usb_epdesc_s *epdesc,
|
|||
{
|
||||
/* Maximum packet size (full speed) */
|
||||
|
||||
epdesc->mxpacketsize[0] = LSBYTE(CONFIG_RNDIS_EPBULKIN_HSSIZE);
|
||||
epdesc->mxpacketsize[1] = MSBYTE(CONFIG_RNDIS_EPBULKIN_HSSIZE);
|
||||
epdesc->mxpacketsize[0] = LSBYTE(CONFIG_RNDIS_EPBULKIN_FSSIZE);
|
||||
epdesc->mxpacketsize[1] = MSBYTE(CONFIG_RNDIS_EPBULKIN_FSSIZE);
|
||||
}
|
||||
|
||||
epdesc->interval = 0; /* Interval */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue