All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc/powermac: fix a loop in core99_usb_enable
@ 2025-02-02 12:46 Denis Kirjanov
  2025-02-02 17:05 ` Christophe Leroy
  0 siblings, 1 reply; 2+ messages in thread
From: Denis Kirjanov @ 2025-02-02 12:46 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: maddy, mpe, benh, Denis Kirjanov

Looks like we have a typo in the do-while loop
while checking the loop condition. Fix it with the boolean OR

Signed-off-by: Denis Kirjanov <kirjanov@gmail.com>
---
 arch/powerpc/platforms/powermac/feature.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/powermac/feature.c b/arch/powerpc/platforms/powermac/feature.c
index d3bcfe590384..9d929fbfc46b 100644
--- a/arch/powerpc/platforms/powermac/feature.c
+++ b/arch/powerpc/platforms/powermac/feature.c
@@ -1174,7 +1174,7 @@ core99_usb_enable(struct device_node *node, long param, long value)
 				mdelay(1);
 				status0 = UN_IN(UNI_N_CLOCK_STOP_STATUS0);
 				status1 = UN_IN(UNI_N_CLOCK_STOP_STATUS1);
-			} while ((status0 & test0) | (status1 & test1));
+			} while ((status0 & test0) || (status1 & test1));
 			LOCK(flags);
 		}
 	} else {
-- 
2.47.2



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

end of thread, other threads:[~2025-02-02 17:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-02 12:46 [PATCH] powerpc/powermac: fix a loop in core99_usb_enable Denis Kirjanov
2025-02-02 17:05 ` Christophe Leroy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.