mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 22:20:45 +00:00
blackfin: Change the member's type in dma structures.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
This commit is contained in:
parent
bbd0f7e3ba
commit
1cd9158eb4
1 changed files with 12 additions and 12 deletions
|
@ -17,21 +17,21 @@
|
|||
|
||||
struct dmasg_large {
|
||||
void *next_desc_addr;
|
||||
unsigned long start_addr;
|
||||
unsigned short cfg;
|
||||
unsigned short x_count;
|
||||
short x_modify;
|
||||
unsigned short y_count;
|
||||
short y_modify;
|
||||
u32 start_addr;
|
||||
u16 cfg;
|
||||
u16 x_count;
|
||||
s16 x_modify;
|
||||
u16 y_count;
|
||||
s16 y_modify;
|
||||
} __attribute__((packed));
|
||||
|
||||
struct dmasg {
|
||||
unsigned long start_addr;
|
||||
unsigned short cfg;
|
||||
unsigned short x_count;
|
||||
short x_modify;
|
||||
unsigned short y_count;
|
||||
short y_modify;
|
||||
u32 start_addr;
|
||||
u16 cfg;
|
||||
u16 x_count;
|
||||
s16 x_modify;
|
||||
u16 y_count;
|
||||
s16 y_modify;
|
||||
} __attribute__((packed));
|
||||
|
||||
struct dma_register {
|
||||
|
|
Loading…
Reference in a new issue