net: remove last uses of __attribute__((packed))

Network code uses the __packed macro instead of __attribute__((packed)).

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Gustavo F. Padovan 2010-07-21 10:59:58 +00:00 committed by David S. Miller
parent 942875ffc1
commit 3f30fc1570
2 changed files with 2 additions and 2 deletions

View file

@ -412,7 +412,7 @@ struct ieee80211_tx_rate {
s8 idx;
u8 count;
u8 flags;
} __attribute__((packed));
} __packed;
/**
* struct ieee80211_tx_info - skb transmit information

View file

@ -469,7 +469,7 @@ struct arp_payload {
__be32 src_ip;
u_int8_t dst_hw[ETH_ALEN];
__be32 dst_ip;
} __attribute__ ((packed));
} __packed;
#ifdef DEBUG
static void arp_print(struct arp_payload *payload)