From: David Kilroy <kilroyd@googlemail.com>
To: linux-wireless@vger.kernel.org, orinoco-devel@lists.sourceforge.net
Cc: David Kilroy <kilroyd@googlemail.com>
Subject: [PATCH 07/17] orinoco: Rename orinoco.c
Date: Tue, 3 Feb 2009 20:40:29 +0000 [thread overview]
Message-ID: <1233693639-8608-8-git-send-email-kilroyd@googlemail.com> (raw)
In-Reply-To: <1233693639-8608-7-git-send-email-kilroyd@googlemail.com>
So that we can split up the file and still produce a module named
orinoco.o.
Signed-off-by: David Kilroy <kilroyd@googlemail.com>
---
drivers/net/wireless/orinoco/Makefile | 1 +
drivers/net/wireless/orinoco/airport.c | 2 +-
drivers/net/wireless/orinoco/{orinoco.c => main.c} | 2 +-
drivers/net/wireless/orinoco/orinoco_cs.c | 2 +-
drivers/net/wireless/orinoco/orinoco_pci.h | 2 +-
drivers/net/wireless/orinoco/orinoco_tmd.c | 2 +-
drivers/net/wireless/orinoco/spectrum_cs.c | 4 ++--
7 files changed, 8 insertions(+), 7 deletions(-)
rename drivers/net/wireless/orinoco/{orinoco.c => main.c} (99%)
diff --git a/drivers/net/wireless/orinoco/Makefile b/drivers/net/wireless/orinoco/Makefile
index 791366e..d2ac785 100644
--- a/drivers/net/wireless/orinoco/Makefile
+++ b/drivers/net/wireless/orinoco/Makefile
@@ -1,6 +1,7 @@
#
# Makefile for the orinoco wireless device drivers.
#
+orinoco-objs := main.o
obj-$(CONFIG_HERMES) += orinoco.o hermes.o hermes_dld.o
obj-$(CONFIG_PCMCIA_HERMES) += orinoco_cs.o
diff --git a/drivers/net/wireless/orinoco/airport.c b/drivers/net/wireless/orinoco/airport.c
index 5582dca..8c4065f 100644
--- a/drivers/net/wireless/orinoco/airport.c
+++ b/drivers/net/wireless/orinoco/airport.c
@@ -3,7 +3,7 @@
* A driver for "Hermes" chipset based Apple Airport wireless
* card.
*
- * Copyright notice & release notes in file orinoco.c
+ * Copyright notice & release notes in file main.c
*
* Note specific to airport stub:
*
diff --git a/drivers/net/wireless/orinoco/orinoco.c b/drivers/net/wireless/orinoco/main.c
similarity index 99%
rename from drivers/net/wireless/orinoco/orinoco.c
rename to drivers/net/wireless/orinoco/main.c
index f6f93cd..d772e53 100644
--- a/drivers/net/wireless/orinoco/orinoco.c
+++ b/drivers/net/wireless/orinoco/main.c
@@ -1,4 +1,4 @@
-/* orinoco.c - (formerly known as dldwd_cs.c and orinoco_cs.c)
+/* main.c - (formerly known as dldwd_cs.c, orinoco_cs.c and orinoco.c)
*
* A driver for Hermes or Prism 2 chipset based PCMCIA wireless
* adaptors, with Lucent/Agere, Intersil or Symbol firmware.
diff --git a/drivers/net/wireless/orinoco/orinoco_cs.c b/drivers/net/wireless/orinoco/orinoco_cs.c
index a3e82fd..b9bbd1e 100644
--- a/drivers/net/wireless/orinoco/orinoco_cs.c
+++ b/drivers/net/wireless/orinoco/orinoco_cs.c
@@ -7,7 +7,7 @@
* Linksys, D-Link and Farallon Skyline. It should also work on Symbol
* cards such as the 3Com AirConnect and Ericsson WLAN.
*
- * Copyright notice & release notes in file orinoco.c
+ * Copyright notice & release notes in file main.c
*/
#define DRIVER_NAME "orinoco_cs"
diff --git a/drivers/net/wireless/orinoco/orinoco_pci.h b/drivers/net/wireless/orinoco/orinoco_pci.h
index 88df3ee..c655b4a 100644
--- a/drivers/net/wireless/orinoco/orinoco_pci.h
+++ b/drivers/net/wireless/orinoco/orinoco_pci.h
@@ -4,7 +4,7 @@
* both native PCI and PCMCIA-to-PCI bridges.
*
* Copyright (C) 2005, Pavel Roskin.
- * See orinoco.c for license.
+ * See main.c for license.
*/
#ifndef _ORINOCO_PCI_H
diff --git a/drivers/net/wireless/orinoco/orinoco_tmd.c b/drivers/net/wireless/orinoco/orinoco_tmd.c
index e77c404..cda0e6e 100644
--- a/drivers/net/wireless/orinoco/orinoco_tmd.c
+++ b/drivers/net/wireless/orinoco/orinoco_tmd.c
@@ -27,7 +27,7 @@
* provisions above, a recipient may use your version of this file
* under either the MPL or the GPL.
*
- * The actual driving is done by orinoco.c, this is just resource
+ * The actual driving is done by main.c, this is just resource
* allocation stuff.
*
* This driver is modeled after the orinoco_plx driver. The main
diff --git a/drivers/net/wireless/orinoco/spectrum_cs.c b/drivers/net/wireless/orinoco/spectrum_cs.c
index 9aefe19..38e5198 100644
--- a/drivers/net/wireless/orinoco/spectrum_cs.c
+++ b/drivers/net/wireless/orinoco/spectrum_cs.c
@@ -4,7 +4,7 @@
* Communications and Intel PRO/Wireless 2011B.
*
* The driver implements Symbol firmware download. The rest is handled
- * in hermes.c and orinoco.c.
+ * in hermes.c and main.c.
*
* Utilities for downloading the Symbol firmware are available at
* http://sourceforge.net/projects/orinoco/
@@ -15,7 +15,7 @@
* Portions based on Spectrum24tDnld.c from original spectrum24 driver:
* Copyright (C) Symbol Technologies.
*
- * See copyright notice in file orinoco.c.
+ * See copyright notice in file main.c.
*/
#define DRIVER_NAME "spectrum_cs"
--
1.6.0.6
next prev parent reply other threads:[~2009-02-03 20:42 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-03 20:40 [PATCH 00/17] orinoco: reorganisation David Kilroy
2009-02-03 20:40 ` [PATCH 01/17] orinoco: checkpatch cleanup David Kilroy
2009-02-03 20:40 ` [PATCH 02/17] orinoco: address leading and trailing whitespace David Kilroy
2009-02-03 20:40 ` [PATCH 03/17] orinoco: spaces in parenthesised expressions David Kilroy
2009-02-03 20:40 ` [PATCH 04/17] orinoco: remove unnecessary braces David Kilroy
2009-02-03 20:40 ` [PATCH 05/17] orinoco: keep line length below 80 characters David Kilroy
2009-02-03 20:40 ` [PATCH 06/17] orinoco: Fix interesting checkpatch errors David Kilroy
2009-02-03 20:40 ` David Kilroy [this message]
2009-02-03 20:40 ` [PATCH 08/17] orinoco: use orinoco_private instead of net_device in scan helper David Kilroy
2009-02-03 20:40 ` [PATCH 09/17] orinoco: Move scan helpers to a separate file David Kilroy
2009-02-03 20:40 ` [PATCH 10/17] orinoco: Move MIC helpers into new file David Kilroy
2009-02-03 20:40 ` [PATCH 11/17] orinoco: Move firmware handling into a separate file David Kilroy
2009-02-03 20:40 ` [PATCH 12/17] orinoco: Use accessor functions for bitrate tables David Kilroy
2009-02-03 20:40 ` [PATCH 13/17] orinoco: Add hardware function to set multicast mode David Kilroy
2009-02-03 20:40 ` [PATCH 14/17] orinoco: Move hardware functions into separate file David Kilroy
2009-02-03 20:40 ` [PATCH 15/17] orinoco: Move WEXT handlers into a " David Kilroy
2009-02-03 20:40 ` [PATCH 16/17] orinoco: hermes_dld does not need to be a module David Kilroy
2009-02-03 20:40 ` [PATCH 17/17] orinoco: hermes doesn't need to be a separate module David Kilroy
2009-02-04 19:34 ` [PATCH 00/17] orinoco: reorganisation Dave
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1233693639-8608-8-git-send-email-kilroyd@googlemail.com \
--to=kilroyd@googlemail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=orinoco-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).