c370ff660a
Resolves: rhbz#1999934 Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
28 lines
816 B
Diff
28 lines
816 B
Diff
From dc03a40adfaaded6c3e2d9bb0bff2218b187daae Mon Sep 17 00:00:00 2001
|
|
From: Jerry Snitselaar <jsnitsel@redhat.com>
|
|
Date: Mon, 18 Oct 2021 15:47:27 -0700
|
|
Subject: [PATCH 3/3] accel-config: remove redundant assignment in umwait
|
|
|
|
Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
|
|
---
|
|
test/dsa.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/test/dsa.c b/test/dsa.c
|
|
index 5396b1b97d3a..961f5a73990e 100644
|
|
--- a/test/dsa.c
|
|
+++ b/test/dsa.c
|
|
@@ -393,9 +393,6 @@ static inline int umwait(unsigned long timeout, unsigned int state)
|
|
uint32_t timeout_low = (uint32_t)timeout;
|
|
uint32_t timeout_high = (uint32_t)(timeout >> 32);
|
|
|
|
- timeout_low = (uint32_t)timeout;
|
|
- timeout_high = (uint32_t)(timeout >> 32);
|
|
-
|
|
asm volatile(".byte 0xf2, 0x48, 0x0f, 0xae, 0xf1\t\n"
|
|
"setc %0\t\n"
|
|
: "=r"(r)
|
|
--
|
|
2.33.0
|
|
|