From patchwork Wed Jan 18 10:21:18 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: 13106162 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 39AB7C38159 for ; Wed, 18 Jan 2023 11:13:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229989AbjARLNR (ORCPT ); Wed, 18 Jan 2023 06:13:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60198 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230060AbjARLMT (ORCPT ); Wed, 18 Jan 2023 06:12:19 -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 BBD9D9B10E for ; Wed, 18 Jan 2023 02:21:21 -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=s7R11vXC8jCEXzNre3obdbv7penBql3BMKvWFGkkcQw=; b=sllu7q1eZrQFQGLPjOi8T3dNmR m95dpDFw1SOSDgk+t/P+WYqONEjVXQ5Z545bchYHf0viQn1C9qx81r8hYJqdS221EQaKvKbkIOORP viXkHbP8b6Objd4gwoCW6CMKbxaBELRcDsg0gJdbouieUCwo6SMsX1gzER19ussGKbjnA9ifT8kTN cNbKLuq/n94B4Bh7V5VtB73Is+SnTcOWgydJ94TWAIoxow6SZdOy9aVRhkUbZhxxNvqv83Lj2rKwC +XYt6lejD+8iVNqHHasA9n1IlnaW+PpkHQF/DoFAbCsmAzTAF/am+yA2qY/60INQKP07GCEPd0y7p /y+rOPPA==; Received: from e0022681537dd.dyn.armlinux.org.uk ([fd8f:7570:feb6:1:222:68ff:fe15:37dd]:41622 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 1pI5ZH-0001QO-Eb; Wed, 18 Jan 2023 10:21:19 +0000 Received: from rmk by rmk-PC.armlinux.org.uk with local (Exim 4.94.2) (envelope-from ) id 1pI5ZG-006Gog-Gy; Wed, 18 Jan 2023 10:21:18 +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 5/5] net: sfp: remove unused ctype.h include MIME-Version: 1.0 Content-Disposition: inline Message-Id: Sender: Russell King Date: Wed, 18 Jan 2023 10:21:18 +0000 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org An include of linux/ctype.h was added in commit 1323061a018a ("net: phy: sfp: Add HWMON support for module sensors") but nothing was used from this header file. Remove this unnecessary include. 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 99cd2b538126..c02cad6478a8 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