Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parisc: ucmpdi2: Fix no previous prototype for '__ucmpdi2' warning

Signed-off-by: Helge Deller <deller@gmx.de>

+2 -1
+2 -1
arch/parisc/lib/ucmpdi2.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0 2 2 #include <linux/module.h> 3 + #include <linux/libgcc.h> 3 4 4 5 union ull_union { 5 6 unsigned long long ull; ··· 10 9 } ui; 11 10 }; 12 11 13 - int __ucmpdi2(unsigned long long a, unsigned long long b) 12 + word_type __ucmpdi2(unsigned long long a, unsigned long long b) 14 13 { 15 14 union ull_union au = {.ull = a}; 16 15 union ull_union bu = {.ull = b};