From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6EF17C433ED for ; Sun, 16 May 2021 04:24:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 45F1E610A2 for ; Sun, 16 May 2021 04:24:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232520AbhEPEZZ (ORCPT ); Sun, 16 May 2021 00:25:25 -0400 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:34528 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229643AbhEPEZX (ORCPT ); Sun, 16 May 2021 00:25:23 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by kvm5.telegraphics.com.au (Postfix) with ESMTP id 52ACE27E19; Sun, 16 May 2021 00:23:59 -0400 (EDT) Date: Sun, 16 May 2021 14:24:07 +1000 (AEST) From: Finn Thain To: Arnd Bergmann cc: netdev@vger.kernel.org, linux-m68k@vger.kernel.org, Arnd Bergmann , Paul Gortmaker , "Maciej W. Rozycki" , "David S. Miller" , Jakub Kicinski , Doug Berger , Florian Fainelli , Sam Creasey , Geert Uytterhoeven , Christophe JAILLET , Andrew Lunn , Alexei Starovoitov , Eric Dumazet , Andrii Nakryiko , Bartosz Golaszewski , linux-kernel@vger.kernel.org, bcm-kernel-feedback-list@broadcom.com Subject: Re: [RFC 13/13] [net-next] 8390: xsurf100: avoid including lib8390.c In-Reply-To: <20210515221320.1255291-14-arnd@kernel.org> Message-ID: References: <20210515221320.1255291-1-arnd@kernel.org> <20210515221320.1255291-14-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 16 May 2021, Arnd Bergmann wrote: > From: Arnd Bergmann > > This driver always warns about unused functions because it includes > an file that it doesn't actually need: > I don't think you can omit #include "lib8390.c" here without changing driver behaviour, because of the macros in effect. I think this change would need some actual testing unless you can show that the module binary does not change.