From patchwork Wed Jul 25 19:52:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 949367 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="EebWs0fc"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 41bQqx3wLwz9s1R for ; Thu, 26 Jul 2018 05:52:45 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731169AbeGYVFx (ORCPT ); Wed, 25 Jul 2018 17:05:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:37534 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729335AbeGYVFw (ORCPT ); Wed, 25 Jul 2018 17:05:52 -0400 Received: from localhost (unknown [69.71.4.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7170A20844; Wed, 25 Jul 2018 19:52:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1532548362; bh=2AFe3nR4upS0F4Fmb/VALXnGhQFpXBi7KRtZixJiBJ0=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=EebWs0fc798wYaYRPRWIGBPJONoKW69zXMa5YZEIFE4/AWc5ci+R7yDRdpp8A1ANz HX6t7eTqheQ3B/43HRMnqayyyu3gQ3Hk7phHPXCe2NsYj0EwU3AeOaYxMbAWpam/pn by+zWUfSmq3QSPzeNROUyl+EcQGaBHONBdKo07ZA= Subject: [PATCH v1 2/4] ath9k: Remove unnecessary include of From: Bjorn Helgaas To: linux-pci@vger.kernel.org Cc: Jeff Kirsher , "David S. Miller" , Kalle Valo , Johannes Berg , Emmanuel Grumbach , Luca Coelho , ath9k-devel@qca.qualcomm.com, linuxwifi@intel.com, intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org Date: Wed, 25 Jul 2018 14:52:38 -0500 Message-ID: <153254835812.92573.3566522887325831923.stgit@bhelgaas-glaptop.roam.corp.google.com> In-Reply-To: <153254813164.92573.10755585465477668768.stgit@bhelgaas-glaptop.roam.corp.google.com> References: <153254813164.92573.10755585465477668768.stgit@bhelgaas-glaptop.roam.corp.google.com> User-Agent: StGit/0.18 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Bjorn Helgaas The ath9k driver doesn't need anything provided by pci-aspm.h, so remove the unnecessary include of it. Signed-off-by: Bjorn Helgaas Acked-by: Kalle Valo --- drivers/net/wireless/ath/ath9k/pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index 645f0fbd9179..92b2dd396436 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c @@ -18,7 +18,6 @@ #include #include -#include #include #include "ath9k.h"