From patchwork Thu Mar 16 12:08:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 13177474 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 3FADCC6FD19 for ; Thu, 16 Mar 2023 12:07:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229960AbjCPMHv (ORCPT ); Thu, 16 Mar 2023 08:07:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48696 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229639AbjCPMHu (ORCPT ); Thu, 16 Mar 2023 08:07:50 -0400 Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A462DCA1C8; Thu, 16 Mar 2023 05:07:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678968469; x=1710504469; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=MgWcw0ZELpPGPcSfV8O0eRAKpYyedQmRFInBTmwy934=; b=gxwRpZDqvxVfiCCxwIj996gLjYVo2AbZ4vxWB/zEmwYcoHULF6EYbxP+ Zxv6Lv3YqgDs2wGjOL4FbAG5BQb65skMgssipJQnxUV25Li6s6ZOV+AKJ MAB0eZefBE94Bd5dLwqxdjw6rPkVFc5oILrGkMz6kFLEKpctgwWAahmjD BVoeWnJflHzJzefyCgkEmvhPrAKpJUfppBGFBDaoSa2JT1+uMj1WPaU0j Seh5v0VqynlyhgQUK0zcBuGNxo054FHhBlWFCnBv0SXJkDSzceFqQ2zIb kO6fhYBFBqanCenhatV9pQt/S0R/FjgtXuA65bOdy0lh6oNDXvip75BzL g==; X-IronPort-AV: E=McAfee;i="6600,9927,10650"; a="400536901" X-IronPort-AV: E=Sophos;i="5.98,265,1673942400"; d="scan'208";a="400536901" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2023 05:07:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10650"; a="710079631" X-IronPort-AV: E=Sophos;i="5.98,265,1673942400"; d="scan'208";a="710079631" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga008.jf.intel.com with ESMTP; 16 Mar 2023 05:07:46 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id D2C443DD; Thu, 16 Mar 2023 14:08:30 +0200 (EET) From: Andy Shevchenko To: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Andrew Lunn , Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Andy Shevchenko Subject: [PATCH net-next v1 1/1] net: phy: at803x: Replace of_gpio.h with what indeed is used Date: Thu, 16 Mar 2023 14:08:26 +0200 Message-Id: <20230316120826.14242-1-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@kernel.org of_gpio.h in this driver is solely used as a proxy to other headers. This is incorrect usage of the of_gpio.h. Replace it .h with what indeed is used in the code. Signed-off-by: Andy Shevchenko Reviewed-by: Andrew Lunn --- drivers/net/phy/at803x.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c index 22f4458274aa..656136628ffd 100644 --- a/drivers/net/phy/at803x.c +++ b/drivers/net/phy/at803x.c @@ -13,12 +13,11 @@ #include #include #include -#include #include -#include #include #include #include +#include #include #include #include