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:
Rafaël Carré 2010-09-08 04:27:01 +00:00
parent 24cd51a2fe
commit 29276bed19

View file

@ -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 */