From patchwork Mon Nov 18 07:29:08 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 13878202 X-Patchwork-Delegate: kuba@kernel.org Received: from mail.zeus03.de (zeus03.de [194.117.254.33]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E594D192D80 for ; Mon, 18 Nov 2024 07:29:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=194.117.254.33 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914998; cv=none; b=A6J8cejx/kNgWNc+43qECY2Y2fHHnEFLMG2P5ixppiQKZN9M5XfTRpuDiWqIPSr0uXe4KgpBTjrutWO892rHSXvil4FqXxDLd/JeMErSNEXCWy0w0Ex+ItWm22ub8FeglojpIVy+r20EICm4naN9S7o4wyO4k+tewfJt7ibB0gQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731914998; c=relaxed/simple; bh=uQ1T56TYuNCOPZ5PR+UdSX4hgLyYi4afMVp3XFbzVuA=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=r6gYcr6JXIj4MYCuUftolEXVbRAgHZvqcOy8DpoanYZ+5BatmEBXZ3Tw+PrndWVJki46fFZAd/Bdxe4jvmGyqEOHyl63f+ZB6FMWFEbjDVG/6m1sHxiPwA/nT0sdOko6iVci2HLjwDU3GHG9RgIjFk+d1o0pOXzCGc0bnYKBJYw= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com; spf=pass smtp.mailfrom=sang-engineering.com; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b=BNYKDxgs; arc=none smtp.client-ip=194.117.254.33 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b="BNYKDxgs" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=y0XyrUg96ZZS1QFaM8OqueFKIMml64CiZTHIvthrgck=; b=BNYKDx gsMAswLoKsC0QXpufXq4uOF+/g0Tf8+7LUFcXOVpGU8CX6QqgCsH3gCsPriFib5N dTbxRxWzUL+hFyIOnV9iTAGrv3IPNkzDztoMmoMm40OWHfI2BOouZhXBpSbigZcY NxcJi9Uj1h60p3THa1H+9it+4bq9YFclhm6qozLERoJD/VjjMz2dIRmFosqy04qJ gsql8xqOPNfK+XEQlU/yJnBj7LvhFn3YAefyWQLZqM50SbKyxF8WoeHlzpN8UMWD pPoBWxnvlklRrlwuabLnDJewLxiNWyPDwxmQe/ItMkWIk0zDMh2DE7Y9wwgfv4sc Z1qc119oU/9B4nWA== Received: (qmail 112494 invoked from network); 18 Nov 2024 08:29:40 +0100 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 18 Nov 2024 08:29:40 +0100 X-UD-Smtp-Session: l3s3148p1@79ow4SonDNYujntT From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Wolfram Sang , Florian Fainelli , Broadcom internal kernel review list , Andrew Lunn , Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org Subject: [PATCH 09/15] net: phy: broadcom: don't include 'pm_wakeup.h' directly Date: Mon, 18 Nov 2024 08:29:08 +0100 Message-Id: <20241118072917.3853-10-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> References: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org The header clearly states that it does not want to be included directly, only via 'device.h'. 'platform_device.h' works equally well. Remove the direct inclusion. Signed-off-by: Wolfram Sang Acked-by: Florian Fainelli --- drivers/net/phy/broadcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c index ddded162c44c..5b55137c9d55 100644 --- a/drivers/net/phy/broadcom.c +++ b/drivers/net/phy/broadcom.c @@ -16,7 +16,7 @@ #include #include #include -#include +#include #include #include #include From patchwork Mon Nov 18 07:29:09 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 13878203 X-Patchwork-Delegate: kuba@kernel.org Received: from mail.zeus03.de (zeus03.de [194.117.254.33]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B260D1946DA for ; Mon, 18 Nov 2024 07:29:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=194.117.254.33 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731915000; cv=none; b=ALXdncCJWHJbsl3dTFGm8YERjybKHyYwPo7doHXI8xEcf6N3HeJNo3mVeGlLanSMlFS9VvraHBR5igdswz0X1lEW/RiffsrP0fl5hMudyy1SjRyc3+aq17LP1RZaWqTDZRE5Qb1PIIeINl1mUAZ1J8uEEU8CzWlqFMM+lM61TL0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1731915000; c=relaxed/simple; bh=d61pyvr9pJx3za2OmQBCSQeX1hFLCfyTEKq8mTGQBKg=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=Hg0Sd5ZMqXtH44O+8qV/9zQY6AwKGf3+b5NfVPtX7uMgUSAuD3dO6UHtraYOEzJ0rOXLQGmpLmAaZdWWuuPmPMQTx7/9ItjsHdOkbhEkqbuW3vCRUWaekowOS4pugQhFBXPYNFgIjnoLTOkjonY/wvTliOgbIeAy6c7nRXkOnys= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com; spf=pass smtp.mailfrom=sang-engineering.com; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b=bAgzxkIA; arc=none smtp.client-ip=194.117.254.33 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b="bAgzxkIA" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=VR+CAEN8pxbCcmFzLXZ5IDr4DL+PJgQOT9bL2ruog/c=; b=bAgzxk IAj6jtuM/w7j1l9AtfZZ2onTodlUySSDSvYKGOLHR1U35D+kTnQpYF7sLwDaZJQn MB4U80ortCWDzaIZEJofopaTNSVOm/dBbXY/F/kFuX2sMit1h7NR26oU3HY+Ze9S VZPcxggvbaS7hfEGTCM1xXPrxWodPm9O3DIs/KY6uEA+WJYFs69SwEIzkJRMjo+t WdGXl1fxsynbJLZst1MNbRCG7tmyp/QcoeaE8KaFJ1wiMLs537Bz+ZPyn6Z05+gN TEjkWDzUb8otfBbcyG+adUyJjX55AHncOEiWGGwWhWQhcXjB0Og3+nzM+dwUuN4H gw/kytzXH6g621+Q== Received: (qmail 112513 invoked from network); 18 Nov 2024 08:29:41 +0100 Received: by mail.zeus03.de with ESMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 18 Nov 2024 08:29:41 +0100 X-UD-Smtp-Session: l3s3148p1@x4I64SonGNYujntT From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Wolfram Sang , Chandrashekar Devegowda , Chiranjeevi Rapolu , Liu Haijun , M Chetan Kumar , Ricardo Martinez , Loic Poulain , Sergey Ryazanov , Johannes Berg , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org Subject: [PATCH 10/15] net: wwan: t7xx: don't include 'pm_wakeup.h' directly Date: Mon, 18 Nov 2024 08:29:09 +0100 Message-Id: <20241118072917.3853-11-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> References: <20241118072917.3853-1-wsa+renesas@sang-engineering.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Patchwork-Delegate: kuba@kernel.org The header clearly states that it does not want to be included directly, only via 'device.h'. 'platform_device.h' works equally well. Remove the direct inclusion. Signed-off-by: Wolfram Sang Acked-by: Sergey Ryazanov --- drivers/net/wwan/t7xx/t7xx_pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/wwan/t7xx/t7xx_pci.c b/drivers/net/wwan/t7xx/t7xx_pci.c index e556e5bd49ab..5ce169461c7b 100644 --- a/drivers/net/wwan/t7xx/t7xx_pci.c +++ b/drivers/net/wwan/t7xx/t7xx_pci.c @@ -32,7 +32,6 @@ #include #include #include -#include #include #include "t7xx_mhccif.h"