summaryrefslogtreecommitdiffstats
path: root/arch/h8300/include
diff options
context:
space:
mode:
authorYoshinori Sato2018-07-12 16:31:45 +0200
committerYoshinori Sato2018-08-22 12:14:17 +0200
commit686320e94da368f5efc2003ba5de9353cf774602 (patch)
tree74916d46ed17ea23e8e5edc727ebe99ea4eb12a0 /arch/h8300/include
parentLinux 4.18 (diff)
downloadkernel-qcow2-linux-686320e94da368f5efc2003ba5de9353cf774602.tar.gz
kernel-qcow2-linux-686320e94da368f5efc2003ba5de9353cf774602.tar.xz
kernel-qcow2-linux-686320e94da368f5efc2003ba5de9353cf774602.zip
h8300: Add missing output register.
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to 'arch/h8300/include')
-rw-r--r--arch/h8300/include/asm/bitops.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/h8300/include/asm/bitops.h b/arch/h8300/include/asm/bitops.h
index ea0cb0cf6a8b..b7ac7cf6f0de 100644
--- a/arch/h8300/include/asm/bitops.h
+++ b/arch/h8300/include/asm/bitops.h
@@ -29,11 +29,11 @@ static inline unsigned long ffz(unsigned long word)
result = -1;
__asm__("1:\n\t"
- "shlr.l %2\n\t"
+ "shlr.l %1\n\t"
"adds #1,%0\n\t"
"bcs 1b"
- : "=r"(result)
- : "0"(result), "r"(word));
+ : "=r"(result),"=r"(word)
+ : "0"(result), "1"(word));
return result;
}
@@ -162,11 +162,11 @@ static inline unsigned long __ffs(unsigned long word)
result = -1;
__asm__("1:\n\t"
- "shlr.l %2\n\t"
+ "shlr.l %1\n\t"
"adds #1,%0\n\t"
"bcc 1b"
- : "=r" (result)
- : "0"(result), "r"(word));
+ : "=r" (result),"=r"(word)
+ : "0"(result), "1"(word));
return result;
}