Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp245370pxv; Wed, 14 Jul 2021 03:05:35 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx4nA+azdWCvXP8inxVsVa1lPHLwLYPDZ1UGXgZbO7AnAStP8KQaU/tzemhUkdfmBX2HneW X-Received: by 2002:a17:906:f743:: with SMTP id jp3mr11323079ejb.370.1626257134780; Wed, 14 Jul 2021 03:05:34 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1626257134; cv=none; d=google.com; s=arc-20160816; b=o6Vt2XivBUWHV2d04xCe+rDKJEPibm0zg+sdY8nFXFuFA3nR6LVO2FJSjvZAiMVjGA 3GjBxWIPgSgPNpS+c5MM9uq238M6p5n6OAuBdjcwO5WSEJBS19hrA3/kaN/YDJcB9+s1 UC4+5H4i1kcAfUwRbYkLWPP6Kw6Ov9modKUec3doT/JkVTt9HqL/SNj7jkfD6le1ult1 jYGBD0oxqJNCWQzCQC/EawtdLME2iju1fuDaMxG0VvinjA941k+WRMbSGjBtUEHGYRJC HG9twDOw5f0UYMRDPRhGeNsggaUX0buvslpfXhkNtLs6innvaiPt6/j3DhuqB85GjagC I7bA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=iR9joj3SP7oY3/0Sk+4wORb9YAuIF8setCyleTciTD4=; b=io3j+yAJwR23GrpensqT/CDfxXHFKUQvVDRjQ+k/1OEVse8Yab2Q91xtLqoJWwKQIR ainZ/PFcbsucCcHXB8f/OB/GgTh79NeWLgQs4zEZAcuRL/QrWE+M8/d7iahVcH7xBpVQ iZB1XgtQg67cnm18qJCjFgWogdiO4sni8f82E70BjO6Q4bi36Zuy1SgTNVvWmps5ixEK V8XgPNNVvUXV/EhTuitJKge3Jt0bbC9CAHLldtrWgPG8KTh9SLxWKFp1SnULwgApBKQF 9Uc9exzuZWs0EtT/ssNRB6Im4A3ubyo3b7eE0gzF3hv2A/UQHvHbXyi6hWuRoCAwP5xK Inrg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f22si2236212ejj.660.2021.07.14.03.05.10; Wed, 14 Jul 2021 03:05:34 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238986AbhGNKHG (ORCPT + 99 others); Wed, 14 Jul 2021 06:07:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56872 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238945AbhGNKHG (ORCPT ); Wed, 14 Jul 2021 06:07:06 -0400 Received: from michel.telenet-ops.be (michel.telenet-ops.be [IPv6:2a02:1800:110:4::f00:18]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A843EC06175F for ; Wed, 14 Jul 2021 03:04:14 -0700 (PDT) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed10:39cc:190a:2775:cfe7]) by michel.telenet-ops.be with bizsmtp id Uy4D250041ccfby06y4DSt; Wed, 14 Jul 2021 12:04:13 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1m3bkS-0016Ee-SU; Wed, 14 Jul 2021 12:04:12 +0200 Received: from geert by rox.of.borg with local (Exim 4.93) (envelope-from ) id 1m3bkS-00A4Jw-AU; Wed, 14 Jul 2021 12:04:12 +0200 From: Geert Uytterhoeven To: Russell King , Arnd Bergmann Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH v2 0/3] Remove checks for gcc < 4 Date: Wed, 14 Jul 2021 12:04:07 +0200 Message-Id: X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi all, This patch removes the few remaining checks for gcc < 4, which is no longer supported for building the kernel. All three patches can be applied independently. Changes compared to v1: - Add Acked-by, - Drop applied patch. Thanks! Geert Uytterhoeven (3): ARM: div64: Remove always-true __div64_const32_is_OK() duplicate ARM: unified: Remove check for gcc < 4 asm-generic: div64: Remove always-true __div64_const32_is_OK() arch/arm/include/asm/div64.h | 11 ----------- arch/arm/include/asm/unified.h | 4 ---- include/asm-generic/div64.h | 14 ++++---------- 3 files changed, 4 insertions(+), 25 deletions(-) -- 2.25.1 Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds