[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1623393419-2521-9-git-send-email-liweihang@huawei.com>
Date: Fri, 11 Jun 2021 14:36:59 +0800
From: Weihang Li <liweihang@...wei.com>
To: <davem@...emloft.net>, <kuba@...nel.org>, <andrew@...n.ch>,
<hkallweit1@...il.com>
CC: <netdev@...r.kernel.org>, <linuxarm@...wei.com>,
Wenpeng Liang <liangwenpeng@...wei.com>,
Weihang Li <liweihang@...wei.com>
Subject: [PATCH net-next 8/8] net: phy: use '__packed' instead of '__attribute__((__packed__))'
From: Wenpeng Liang <liangwenpeng@...wei.com>
Prefer __packed over __attribute__((__packed__)).
Signed-off-by: Wenpeng Liang <liangwenpeng@...wei.com>
Signed-off-by: Weihang Li <liweihang@...wei.com>
---
drivers/net/phy/mscc/mscc_ptp.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/phy/mscc/mscc_ptp.h b/drivers/net/phy/mscc/mscc_ptp.h
index da34653..01f78b4 100644
--- a/drivers/net/phy/mscc/mscc_ptp.h
+++ b/drivers/net/phy/mscc/mscc_ptp.h
@@ -450,14 +450,14 @@ struct vsc85xx_ptphdr {
__be16 seq_id;
u8 ctrl;
u8 log_interval;
-} __attribute__((__packed__));
+} __packed;
/* Represents an entry in the timestamping FIFO */
struct vsc85xx_ts_fifo {
u32 ns;
u64 secs:48;
u8 sig[16];
-} __attribute__((__packed__));
+} __packed;
struct vsc85xx_ptp {
struct phy_device *phydev;
--
2.8.1
Powered by blists - more mailing lists