]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: rmobile: Fix PHY LED mode register mask
authorMarek Vasut <marek.vasut+renesas@gmail.com>
Sat, 30 Mar 2019 06:05:09 +0000 (07:05 +0100)
committerMarek Vasut <marex@denx.de>
Sat, 30 Mar 2019 06:31:02 +0000 (07:31 +0100)
The PHY LED mode register mask should be 0xc000 , not 0xc0000.
Correct the mask to operate on the right bits.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
board/renesas/alt/alt.c
board/renesas/gose/gose.c
board/renesas/koelsch/koelsch.c
board/renesas/lager/lager.c
board/renesas/porter/porter.c
board/renesas/silk/silk.c
board/renesas/stout/stout.c

index 7a9a51e4cd29830463f10190d535fc466ba5d742..7b8500020314373f0cf1c035d73b9073669e09a9 100644 (file)
@@ -92,7 +92,7 @@ int dram_init_banksize(void)
 
 /* KSZ8041RNLI */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 282381ede56f9538ce22dfa7c37058e1cf2eae61..7c6100873953019c0562c04e7db5f86066e75e15 100644 (file)
@@ -98,7 +98,7 @@ int dram_init_banksize(void)
 
 /* KSZ8041RNLI */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 52f37c970e78568f751504d45f5abaaf4b982be9..d07a7ca2aba5af282022705deee40e7fff2fe69d 100644 (file)
@@ -100,7 +100,7 @@ int dram_init_banksize(void)
 
 /* Koelsch has KSZ8041NL/RNL */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 062e88c19832359e8b8f1e82987fcef7a3d58a3e..f062bb01725ec4858dc0cf2a7950b162beaa514d 100644 (file)
@@ -109,7 +109,7 @@ int dram_init_banksize(void)
 
 /* KSZ8041NL/RNL */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 663b8001ef6b2c9a8d97e5e7f6c42109baf7bbea..2e15a4cbbdc950a546742ec3bc8e37cf75abf9f8 100644 (file)
@@ -98,7 +98,7 @@ int dram_init_banksize(void)
 
 /* porter has KSZ8041RNLI */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 966c0717b2495c9fa04ca3446795fdfa8727bc65..59ba262ad73ed4379b10d0d2dac4afb77c4cfe72 100644 (file)
@@ -93,7 +93,7 @@ int dram_init_banksize(void)
 
 /* porter has KSZ8041RNLI */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {
index 85e30db635f634dfe60cfb050d08689c0743f6b3..7c515950d671a96a79ffa27b56f9a1fdb6008fbf 100644 (file)
@@ -112,7 +112,7 @@ int dram_init_banksize(void)
 
 /* Stout has KSZ8041NL/RNL */
 #define PHY_CONTROL1           0x1E
-#define PHY_LED_MODE           0xC0000
+#define PHY_LED_MODE           0xC000
 #define PHY_LED_MODE_ACK       0x4000
 int board_phy_config(struct phy_device *phydev)
 {