blackfin: Change the member's type in dma structures.

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
This commit is contained in:
Sonic Zhang 2013-02-08 17:04:58 +08:00
parent bbd0f7e3ba
commit 1cd9158eb4

View File

@ -17,21 +17,21 @@
struct dmasg_large { struct dmasg_large {
void *next_desc_addr; void *next_desc_addr;
unsigned long start_addr; u32 start_addr;
unsigned short cfg; u16 cfg;
unsigned short x_count; u16 x_count;
short x_modify; s16 x_modify;
unsigned short y_count; u16 y_count;
short y_modify; s16 y_modify;
} __attribute__((packed)); } __attribute__((packed));
struct dmasg { struct dmasg {
unsigned long start_addr; u32 start_addr;
unsigned short cfg; u16 cfg;
unsigned short x_count; u16 x_count;
short x_modify; s16 x_modify;
unsigned short y_count; u16 y_count;
short y_modify; s16 y_modify;
} __attribute__((packed)); } __attribute__((packed));
struct dma_register { struct dma_register {