mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] net: phy: marvell: Use BIT() macro for flags
@ 2022-01-14  4:07 Kai-Heng Feng
  2022-01-14  4:07 ` [PATCH 2/2] stmmac: intel: Honor phy LED set by system firmware on a Dell hardware Kai-Heng Feng
  0 siblings, 1 reply; 10+ messages in thread
From: Kai-Heng Feng @ 2022-01-14  4:07 UTC (permalink / raw)
  To: peppe.cavallaro, alexandre.torgue, joabreu
  Cc: Kai-Heng Feng, David S. Miller, Marek Behún, Andrew Lunn,
	Ivan Bornyakov, Pali Rohár, linux-kernel

Use BIT() macro to make adding new flags easier.

Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com>
---
 include/linux/marvell_phy.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/marvell_phy.h b/include/linux/marvell_phy.h
index 0f06c2287b527..ea5995d9ad6c1 100644
--- a/include/linux/marvell_phy.h
+++ b/include/linux/marvell_phy.h
@@ -40,8 +40,8 @@
 #define MARVELL_PHY_FAMILY_ID(id)	((id) >> 4)
 
 /* struct phy_device dev_flags definitions */
-#define MARVELL_PHY_M1145_FLAGS_RESISTANCE	0x00000001
-#define MARVELL_PHY_M1118_DNS323_LEDS		0x00000002
-#define MARVELL_PHY_LED0_LINK_LED1_ACTIVE	0x00000004
+#define MARVELL_PHY_M1145_FLAGS_RESISTANCE	BIT(0)
+#define MARVELL_PHY_M1118_DNS323_LEDS		BIT(1)
+#define MARVELL_PHY_LED0_LINK_LED1_ACTIVE	BIT(2)
 
 #endif /* _MARVELL_PHY_H */
-- 
2.33.1


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-01-14 17:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-14  4:07 [PATCH 1/2] net: phy: marvell: Use BIT() macro for flags Kai-Heng Feng
2022-01-14  4:07 ` [PATCH 2/2] stmmac: intel: Honor phy LED set by system firmware on a Dell hardware Kai-Heng Feng
2022-01-14  4:35   ` Jakub Kicinski
2022-01-14  6:47     ` Kai-Heng Feng
2022-01-14 16:23       ` Jakub Kicinski
2022-01-14 13:09   ` Andrew Lunn
2022-01-14 15:22     ` Kai-Heng Feng
2022-01-14 17:25       ` Andrew Lunn
2022-01-14 13:20   ` Andrew Lunn
2022-01-14 15:25     ` Kai-Heng Feng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome