Messages in this thread Patch in this message |  | | From | Olof Johansson <> | Subject | [PATCH] riscv: export __lshrti3 | Date | Mon, 16 Dec 2019 16:30:57 -0800 |
| |
ARM64 exports it already, and recently it started showing up as needed with allmodconfig.
To keep things building as expected, let's export on riscv as well.
Signed-off-by: Olof Johansson <olof@lixom.net> ---
It'd be nice to see this go in through 5.5-rc, since the breakage showed up this merge window. It was triggered by ce5c31db3645 ("lib/ubsan: don't serialize UBSAN report"), but I think that was just coincidental.
arch/riscv/lib/tishift.S | 1 + 1 file changed, 1 insertion(+)
diff --git a/arch/riscv/lib/tishift.S b/arch/riscv/lib/tishift.S index 15f9d54c7db63..8ecb7db331cfe 100644 --- a/arch/riscv/lib/tishift.S +++ b/arch/riscv/lib/tishift.S @@ -35,3 +35,4 @@ ENTRY(__lshrti3) addi sp,sp,16 ret ENDPROC(__lshrti3) +EXPORT_SYMBOL(__lshrti3) -- 2.11.0
|  |