Commit ea079ed9 authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren

n800: usb: fix num_eps and avoid BUG()

num_eps is 16, not 32.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 2957f4da
...@@ -73,7 +73,7 @@ static struct musb_hdrc_config musb_config = { ...@@ -73,7 +73,7 @@ static struct musb_hdrc_config musb_config = {
.dyn_fifo = 1, .dyn_fifo = 1,
.soft_con = 1, .soft_con = 1,
.dma = 1, .dma = 1,
.num_eps = 32, .num_eps = 16,
.dma_channels = 7, .dma_channels = 7,
.ram_bits = 12, .ram_bits = 12,
.eps_bits = musb_eps, .eps_bits = musb_eps,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment