Skip to content
Snippets Groups Projects
Commit ec2aadb4 authored by Cliff Cai's avatar Cliff Cai Committed by Remy Bohmer
Browse files

usb: musb: fix Blackfin DMA register padding


The conversion from offsets to C structs lost a little padding in the DMA
register map.  Accessing endpoints other than ep0 with DMA would fail as
the addresses wouldn't be adjusted correctly.

Signed-off-by: default avatarCliff Cai <cliff.cai@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 111d6c6a
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,7 @@ struct bfin_musb_dma_regs { ...@@ -82,7 +82,7 @@ struct bfin_musb_dma_regs {
ureg(addr_high); ureg(addr_high);
ureg(count_low); ureg(count_low);
ureg(count_high); ureg(count_high);
ureg(pad); u32 reserved0[2];
}; };
#undef ureg #undef ureg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment