diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-06-02 14:10:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-03 06:18:23 -0400 |
commit | ba2d3587912f82d1ab4367975b1df460db60fb1e (patch) | |
tree | 1e4e04caf23274bb4e39edbfc5713b4856326953 /drivers/net/atlx | |
parent | 1273d97674a1782ff55b823aa6c40aea9b538aaf (diff) |
drivers/net: use __packed annotation
cleanup patch.
Use new __packed annotation in drivers/net/
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/atlx')
-rw-r--r-- | drivers/net/atlx/atl1.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/atlx/atl1.h b/drivers/net/atlx/atl1.h index 146372fd6683..9c0ddb273ac8 100644 --- a/drivers/net/atlx/atl1.h +++ b/drivers/net/atlx/atl1.h | |||
@@ -436,8 +436,8 @@ struct rx_free_desc { | |||
436 | __le16 buf_len; /* Size of the receive buffer in host memory */ | 436 | __le16 buf_len; /* Size of the receive buffer in host memory */ |
437 | u16 coalese; /* Update consumer index to host after the | 437 | u16 coalese; /* Update consumer index to host after the |
438 | * reception of this frame */ | 438 | * reception of this frame */ |
439 | /* __attribute__ ((packed)) is required */ | 439 | /* __packed is required */ |
440 | } __attribute__ ((packed)); | 440 | } __packed; |
441 | 441 | ||
442 | /* | 442 | /* |
443 | * The L1 transmit packet descriptor is comprised of four 32-bit words. | 443 | * The L1 transmit packet descriptor is comprised of four 32-bit words. |