mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 20:27:42 +02:00
ramips: raeth: add '__packed __aligned(4)' annotation to dma descritor structures
This helps GCC to generare more efficient code. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30553 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
eaae1ec1de
commit
0564ef75aa
@ -195,7 +195,7 @@ struct ramips_rx_dma {
|
|||||||
unsigned int rxd2;
|
unsigned int rxd2;
|
||||||
unsigned int rxd3;
|
unsigned int rxd3;
|
||||||
unsigned int rxd4;
|
unsigned int rxd4;
|
||||||
};
|
} __packed __aligned(4);
|
||||||
|
|
||||||
#define TX_DMA_PLEN0_MASK ((0x3fff) << 16)
|
#define TX_DMA_PLEN0_MASK ((0x3fff) << 16)
|
||||||
#define TX_DMA_PLEN0(_x) (((_x) & 0x3fff) << 16)
|
#define TX_DMA_PLEN0(_x) (((_x) & 0x3fff) << 16)
|
||||||
@ -211,7 +211,7 @@ struct ramips_tx_dma {
|
|||||||
unsigned int txd2;
|
unsigned int txd2;
|
||||||
unsigned int txd3;
|
unsigned int txd3;
|
||||||
unsigned int txd4;
|
unsigned int txd4;
|
||||||
};
|
} __packed __aligned(4);
|
||||||
|
|
||||||
struct raeth_priv
|
struct raeth_priv
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user