mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
USB AMSv2: Reduce the size of (in/out)_ep_list
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28039 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
24cd51a2fe
commit
29276bed19
1 changed files with 2 additions and 2 deletions
|
|
@ -36,8 +36,8 @@
|
|||
#include "usb-drv-as3525v2.h"
|
||||
#include "usb_core.h"
|
||||
|
||||
static const int in_ep_list[NUM_IN_EP + 1] = {0, IN_EP_LIST};
|
||||
static const int out_ep_list[NUM_OUT_EP + 1] = {0, OUT_EP_LIST};
|
||||
static const uint8_t in_ep_list[NUM_IN_EP + 1] = {0, IN_EP_LIST};
|
||||
static const uint8_t out_ep_list[NUM_OUT_EP + 1] = {0, OUT_EP_LIST};
|
||||
|
||||
/* iterate through each in/out ep except EP0
|
||||
* 'i' is the counter, 'ep' is the actual value */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue