From: Stanislaw Gruszka <sgruszka@redhat.com>
To: "Guy, Wey-Yi" <wey-yi.w.guy@intel.com>
Cc: "linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH 28/77] iwlegacy: rename base 4965 and 3945 file names
Date: Fri, 18 Nov 2011 16:41:33 +0100 [thread overview]
Message-ID: <20111118154133.GD2203@redhat.com> (raw)
In-Reply-To: <1321626098.11647.13.camel@wwguy-huron>
On Fri, Nov 18, 2011 at 06:21:38AM -0800, Guy, Wey-Yi wrote:
> On Fri, 2011-11-18 at 00:21 -0800, Stanislaw Gruszka wrote:
> > Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
> > ---
> > drivers/net/wireless/iwlegacy/3945-mac.c | 4007 ++++++++++++++++++++++++++
> > drivers/net/wireless/iwlegacy/3945.c | 2740 ++++++++++++++++++
> > drivers/net/wireless/iwlegacy/4965-mac.c | 3245 +++++++++++++++++++++
> > drivers/net/wireless/iwlegacy/4965.c | 2183 ++++++++++++++
> > drivers/net/wireless/iwlegacy/Makefile | 4 +-
> > drivers/net/wireless/iwlegacy/iwl-3945.c | 2740 ------------------
> > drivers/net/wireless/iwlegacy/iwl-4965.c | 2183 --------------
> > drivers/net/wireless/iwlegacy/iwl3945-base.c | 4007 --------------------------
> > drivers/net/wireless/iwlegacy/iwl4965-base.c | 3245 ---------------------
> > 9 files changed, 12177 insertions(+), 12177 deletions(-)
> > create mode 100644 drivers/net/wireless/iwlegacy/3945-mac.c
> > create mode 100644 drivers/net/wireless/iwlegacy/3945.c
> > create mode 100644 drivers/net/wireless/iwlegacy/4965-mac.c
> > create mode 100644 drivers/net/wireless/iwlegacy/4965.c
> > delete mode 100644 drivers/net/wireless/iwlegacy/iwl-3945.c
> > delete mode 100644 drivers/net/wireless/iwlegacy/iwl-4965.c
> > delete mode 100644 drivers/net/wireless/iwlegacy/iwl3945-base.c
> > delete mode 100644 drivers/net/wireless/iwlegacy/iwl4965-base.c
> >
> > 683K patch can be downloaded from:
> > http://people.redhat.com/sgruszka/iwlegacy-2011-11-16/0028-iwlegacy-rename-base-4965-and-3945-file-names.patch
> > --
> myabe also rename other modules which has "iwl" prefix to "il"? such as
> iwl-led.c, iwl-eeprom.c, ...
Other patched do that.
Stanislaw
next prev parent reply other threads:[~2011-11-18 15:39 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-18 8:21 [PATCH 01/77] iwlegacy: remove tracing Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 02/77] iwlegacy: rename iwl to il Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 03/77] iwlegacy: rename priv " Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 04/77] iwlegacy: rename iwlegacy " Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 05/77] iwlegacy: remove DEBUG_IO Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 06/77] iwlegacy: remove DEBUG_LIMIT Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 07/77] iwlegacy: rename IL_DEBUG_ to D_ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 08/77] iwlegacy: remove il argument from IWL_ERR/INFO/WARN/CRIT Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 09/77] iwlegacy: remove IL_CRIT Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 10/77] iwlegacy: rename il_{read,write}32 to _il_{rd,wr} Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 11/77] iwlegacy: mark poll bit as unlocked function Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 12/77] iwlegacy: mark il_{grab,release}_nic_access as unlocked Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 13/77] iwlegacy: remove _il_{read,write}_direct32 Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 14/77] iwlegacy: rename i/o direct methods Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 15/77] iwlegacy: rename il_{read,write}_prph Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 16/77] iwlegacy: remove not needed parentheses Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 17/77] iwlegacy: rename remaining IWLs to ILs Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 18/77] iwlegacy: s/iwl_rx_packet/iwl_rx_pkt/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 19/77] iwlegacy: partial rxon context cleanup Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 20/77] iwlegacy: s/il_rx_mem_buffer/il_rx_buf/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 21/77] iwlegacy: s/statistics/stats/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 22/77] iwlegacy: s/window/win/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 23/77] iwlegacy: s/IL_RATE/RATE/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 24/77] iwlegacy: s/INDEX/IDX/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 25/77] iwlegacy: s/index/idx/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 26/77] iwlegacy: s/TABLE/TBL/ Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 27/77] iwlegacy: remove for_each_context Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 28/77] iwlegacy: rename base 4965 and 3945 file names Stanislaw Gruszka
2011-11-18 14:21 ` Guy, Wey-Yi
2011-11-18 15:41 ` Stanislaw Gruszka [this message]
2011-11-18 8:21 ` [PATCH 29/77] iwlegacy: merge iwl-4965-led.c into 4965.c Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 30/77] iwlegacy: merge iwl-3945-led.c into 3945.c Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 31/77] iwlegacy: merge iwl-4965-eeprom.c into 4965.c Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 32/77] iwlegacy: merge iwl-4965-ucode.c " Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 33/77] iwlegacy: merge iwl-4965-sta.c into 4965-mac.c Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 34/77] iwlegacy: merge iwl-4965-{tx,rx}.c " Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 35/77] iwlegacy: merge iwl-4965-lib.c " Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 36/77] iwlegacy: rename iwl-4965-{rs,calib,debugfs}.c to 4965-{rs,calib,debug}.c Stanislaw Gruszka
2011-11-18 8:21 ` [PATCH 37/77] iwlegacy: rename iwl-3945-{rs,debugfs}.c to 3945-{rs,debug}.c Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 38/77] iwlegacy: add accidentally removed comments Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 39/77] iwlegacy: move iwl-4965-{,hw,debugfs,calib}.h to 4965.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 40/77] iwlegacy: move iwl-3945-{,hw,fh,debugfs}.h to 3945.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 41/77] iwlegacy: s/STATUS_/S_/ Stanislaw Gruszka
2011-11-18 22:58 ` Pavel Roskin
2011-11-21 6:40 ` Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 42/77] iwlegacy: s/STATISTICS/STATS/ Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 43/77] iwlegacy: rename REPLY_ to N_ or C_ Stanislaw Gruszka
2011-11-18 23:03 ` Pavel Roskin
2011-11-21 7:46 ` Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 44/77] iwlegacy: s/rx_handler/handler/ Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 45/77] iwlegacy: s/rx_reply/hdl/ Stanislaw Gruszka
2011-11-18 23:02 ` Pavel Roskin
2011-11-21 7:44 ` Stanislaw Gruszka
2011-11-21 17:01 ` Pavel Roskin
2011-11-18 8:22 ` [PATCH 46/77] iwlegacy: rename other handlers Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 47/77] iwlegacy: rename iwl-core.c to common.c Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 48/77] iwlegacy: merge common .c files Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 49/77] iwlegacy: rename module name Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 50/77] iwlegacy: rename iwl-commands.h to commands.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 51/77] iwlegacy: remove il_ieee80211_get_hw_conf Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 52/77] iwlegacy: move IL_MASK Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 53/77] iwlegacy: rename iwl-csr.h to csr.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 54/77] iwlegacy: rename iwl-core.h to common.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 55/77] iwlegacy: merge common header files Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 56/77] iwlegacy: remove iwl-helpers.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 57/77] iwlegacy: merge iwl-legacy-rs.h into common.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 58/77] iwlegacy: merge iwl-power.h " Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 59/77] iwlegacy: merge iwl-{eeprom,led}.h " Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 60/77] iwlegacy: rename iwl-prph.h to prph.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 61/77] iwlegacy: use FH39_ prefix in 3945 code Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 62/77] iwlegacy: use FH49_ prefix in 4965 code Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 63/77] iwlegacy: merge iwl-fh.h into 4965.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 64/77] iwlegacy: rename iwl-debug.c to debug.c Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 65/77] iwlegacy: merge iwl-debug.h into common.h Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 66/77] iwlegacy: indentions and whitespaces Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 67/77] iwlegacy: checkpatch.pl fixes Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 68/77] iwlegacy: change IL_WARN to D_HT in il4965_tx_agg_start Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 69/77] iwlegacy: change IL_ERR to D_HT in iwl4965_rs_tl_turn_on_agg_for_tid Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 70/77] iwlegacy: remove unused IL_AC_UNSET define Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 71/77] iwlegacy: 4965: remove vif null check in request_scan Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 72/77] iwlegacy: 4965-rs: remove null check on sta in il4965_rs_tx_status Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 73/77] iwlegacy: 4965-rs: remove unnecessary null check for sta and lq_sta Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 74/77] iwlegacy: 4965-rs: il4965_rs_alloc_sta: remove lq_sta local var Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 75/77] iwlegacy: 4965-rs: don't return rate from il4965_rs_update_rate_tbl Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 76/77] iwlegacy: 4965-rs: cleanup il4965_rs_sta_dbgfs_rate_scale_data_read Stanislaw Gruszka
2011-11-18 8:22 ` [PATCH 77/77] iwlegacy: debugfs_ops should depend on CONFIG_IWLEGACY_DEBUGFS Stanislaw Gruszka
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=20111118154133.GD2203@redhat.com \
--to=sgruszka@redhat.com \
--cc=linux-wireless@vger.kernel.org \
--cc=wey-yi.w.guy@intel.com \
/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).