From patchwork Wed Jan 18 10:21:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Russell King (Oracle)" X-Patchwork-Id: 13106161 X-Patchwork-Delegate: kuba@kernel.org 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 7813BC32793 for ; Wed, 18 Jan 2023 11:12:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229729AbjARLM5 (ORCPT ); Wed, 18 Jan 2023 06:12:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59648 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229831AbjARLMP (ORCPT ); Wed, 18 Jan 2023 06:12:15 -0500 Received: from pandora.armlinux.org.uk (pandora.armlinux.org.uk [IPv6:2001:4d48:ad52:32c8:5054:ff:fe00:142]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7D85F9AAB5 for ; Wed, 18 Jan 2023 02:21:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=armlinux.org.uk; s=pandora-2019; h=Date:Sender:Message-Id:Content-Type: Content-Transfer-Encoding:MIME-Version:Subject:Cc:To:From:References: In-Reply-To:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=CnsqxMttzIum7fcRqp6WOF2aEfEW/zPNxzk1E7P73VE=; b=rAdF6/DQr2HgEMO67wasDbskqm bOEaKeKZYrYuFLUMnzWrxofc0zvdFo0EWU5qj0NxRAw3K5FYS3pvEsnjqgdcnY/yNScvBpjq3EdwY Tfx5lP+rz2OD1eMkwH911TkE7xCn2KQnCVxM/g0kv43cGhb3EU0wxi5GR/e8iUXlzo/8600uo/f1v S7YdL4lSL1URAGNGQFwElakVA443Q7KwLaU6N4UTKTDeTpr0fUma911m9yjmyqweWLiKrHhFOFSAS WzsMt5q/xoxVNywHlJqW5EGorfmVUafaSEh2IwwgqRJDw0phyWvVRZfvGpzKEsIEiI3mEtLCaFsGC SqlgnERw==; Received: from e0022681537dd.dyn.armlinux.org.uk ([fd8f:7570:feb6:1:222:68ff:fe15:37dd]:60660 helo=rmk-PC.armlinux.org.uk) by pandora.armlinux.org.uk with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pI5ZC-0001QC-Bn; Wed, 18 Jan 2023 10:21:14 +0000 Received: from rmk by rmk-PC.armlinux.org.uk with local (Exim 4.94.2) (envelope-from ) id 1pI5ZB-006Goa-E3; Wed, 18 Jan 2023 10:21:13 +0000 In-Reply-To: References: From: "Russell King (Oracle)" To: Andrew Lunn , Heiner Kallweit Cc: "David S. Miller" , Eric Dumazet , Jakub Kicinski , netdev@vger.kernel.org, Paolo Abeni Subject: [PATCH net-next 4/5] net: sfp: remove acpi.h include MIME-Version: 1.0 Content-Disposition: inline Message-Id: Sender: Russell King Date: Wed, 18 Jan 2023 10:21:13 +0000 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org Nothing in the sfp code now references anything from the ACPI header, everything is done via fwnode APIs, so get rid of this header. Signed-off-by: Russell King (Oracle) --- drivers/net/phy/sfp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/phy/sfp.c b/drivers/net/phy/sfp.c index 64dfc5f1ea7b..99cd2b538126 100644 --- a/drivers/net/phy/sfp.c +++ b/drivers/net/phy/sfp.c @@ -1,5 +1,4 @@ // SPDX-License-Identifier: GPL-2.0 -#include #include #include #include