From patchwork Tue Nov 15 11:23:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sangwook X-Patchwork-Id: 5144 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 4492D23E0F for ; Tue, 15 Nov 2011 11:25:58 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 205CCA185CB for ; Tue, 15 Nov 2011 11:25:58 +0000 (UTC) Received: by faaa26 with SMTP id a26so333728faa.11 for ; Tue, 15 Nov 2011 03:25:58 -0800 (PST) Received: by 10.152.162.10 with SMTP id xw10mr16722003lab.12.1321356357888; Tue, 15 Nov 2011 03:25:57 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.41.198 with SMTP id h6cs33821lal; Tue, 15 Nov 2011 03:25:57 -0800 (PST) Received: by 10.204.152.4 with SMTP id e4mr23318355bkw.56.1321356355757; Tue, 15 Nov 2011 03:25:55 -0800 (PST) Received: from mail-bw0-f50.google.com (mail-bw0-f50.google.com [209.85.214.50]) by mx.google.com with ESMTPS id uq10si14256307bkb.81.2011.11.15.03.25.54 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Nov 2011 03:25:55 -0800 (PST) Received-SPF: neutral (google.com: 209.85.214.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) client-ip=209.85.214.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.214.50 is neither permitted nor denied by best guess record for domain of sangwook.lee@linaro.org) smtp.mail=sangwook.lee@linaro.org Received: by bkbzu17 with SMTP id zu17so8723455bkb.37 for ; Tue, 15 Nov 2011 03:25:54 -0800 (PST) Received: by 10.205.124.144 with SMTP id go16mr15918083bkc.119.1321356354576; Tue, 15 Nov 2011 03:25:54 -0800 (PST) Received: from localhost.localdomain (host86-144-160-143.range86-144.btcentralplus.com. [86.144.160.143]) by mx.google.com with ESMTPS id c12sm1798887fam.1.2011.11.15.03.25.51 (version=SSLv3 cipher=OTHER); Tue, 15 Nov 2011 03:25:53 -0800 (PST) From: Sangwook Lee To: linux-kernel@vger.kernel.org, linux-mips@linux-mips.org, linux-wireless@vger.kernel.org, ath9k-devel@lists.ath9k.org Cc: ralf@linux-mips.org, juhosg@openwrt.org, rodrigue@qca.qualcomm.com, linville@tuxdriver.com, rmanohar@qca.qualcomm.com, patches@linaro.org, Sangwook Lee Subject: [PATCH] ath9k: rename ath9k_platform.h to ath_platform.h Date: Tue, 15 Nov 2011 11:23:44 +0000 Message-Id: <1321356224-5053-1-git-send-email-sangwook.lee@linaro.org> X-Mailer: git-send-email 1.7.4.1 The patch series proposes to rename ath9k_platform.h to "ath_platform.h This header file handles platform data used only for ath9k, but it can used by ath6k as well. We can take "wl12xx.h" as as a example. Please let us change this file name so that other Atheors WLANs use this file for their own platform data Signed-off-by: Sangwook Lee --- arch/mips/ath79/dev-ar913x-wmac.c | 2 +- drivers/net/wireless/ath/ath9k/ahb.c | 2 +- drivers/net/wireless/ath/ath9k/init.c | 2 +- drivers/net/wireless/ath/ath9k/pci.c | 2 +- include/linux/{ath9k_platform.h => ath_platform.h} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename include/linux/{ath9k_platform.h => ath_platform.h} (100%) diff --git a/include/linux/ath9k_platform.h b/include/linux/ath_platform.h similarity index 100% rename from include/linux/ath9k_platform.h rename to include/linux/ath_platform.h diff --git a/arch/mips/ath79/dev-ar913x-wmac.c b/arch/mips/ath79/dev-ar913x-wmac.c index 48f425a..bc8869c 100644 --- a/arch/mips/ath79/dev-ar913x-wmac.c +++ b/arch/mips/ath79/dev-ar913x-wmac.c @@ -13,7 +13,7 @@ #include #include #include -#include +#include #include #include diff --git a/drivers/net/wireless/ath/ath9k/ahb.c b/drivers/net/wireless/ath/ath9k/ahb.c index 85a54cd..d84bee6 100644 --- a/drivers/net/wireless/ath/ath9k/ahb.c +++ b/drivers/net/wireless/ath/ath9k/ahb.c @@ -18,7 +18,7 @@ #include #include -#include +#include #include "ath9k.h" static const struct platform_device_id ath9k_platform_id_table[] = { diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index af1b325..0c82aea 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -16,7 +16,7 @@ #include #include -#include +#include #include "ath9k.h" diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index edb0b4b..2f031b8 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c @@ -17,7 +17,7 @@ #include #include #include -#include +#include #include "ath9k.h" static DEFINE_PCI_DEVICE_TABLE(ath_pci_id_table) = {