From nobody Wed Dec 17 19:59:01 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 13939C30633 for ; Thu, 17 Aug 2023 14:45:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352203AbjHQOpP (ORCPT ); Thu, 17 Aug 2023 10:45:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33254 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352224AbjHQOpD (ORCPT ); Thu, 17 Aug 2023 10:45:03 -0400 Received: from albert.telenet-ops.be (albert.telenet-ops.be [IPv6:2a02:1800:110:4::f00:1a]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0FBF1C7 for ; Thu, 17 Aug 2023 07:45:01 -0700 (PDT) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:d85a:258d:2c59:b44]) by albert.telenet-ops.be with bizsmtp id aeky2A00g4QHFyo06eky8J; Thu, 17 Aug 2023 16:44:59 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1qWeF1-000u8h-6m; Thu, 17 Aug 2023 16:44:58 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1qWeF8-007SBU-NT; Thu, 17 Aug 2023 16:44:58 +0200 From: Geert Uytterhoeven To: linux-m68k@lists.linux-m68k.org Cc: Arnd Bergmann , linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 3/6] m68k: math-emu: Make multi_arith.h self-contained Date: Thu, 17 Aug 2023 16:44:50 +0200 Message-Id: <2efd6610e97dd1621e7d28bf87cb79173285545d.1692283195.git.geert@linux-m68k.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Add the missing #include "fp_emu.h". Signed-off-by: Geert Uytterhoeven --- arch/m68k/math-emu/multi_arith.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/m68k/math-emu/multi_arith.h b/arch/m68k/math-emu/multi_ar= ith.h index ed2434fcfb1ef46e..f7d9e49fe259d8c9 100644 --- a/arch/m68k/math-emu/multi_arith.h +++ b/arch/m68k/math-emu/multi_arith.h @@ -18,6 +18,8 @@ #ifndef _MULTI_ARITH_H #define _MULTI_ARITH_H =20 +#include "fp_emu.h" + static inline void fp_denormalize(struct fp_ext *reg, unsigned int cnt) { reg->exp +=3D cnt; --=20 2.34.1