mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Stefan Richter <stefanr@s5r6.in-berlin.de>
To: linux1394-devel@lists.sourceforge.net
Cc: linux-kernel@vger.kernel.org
Subject: [RFC patch 2/2] firewire: rename source files
Date: Fri, 5 Jun 2009 16:43:16 +0200 (CEST)	[thread overview]
Message-ID: <tkrat.9c353e14a798ecf3@s5r6.in-berlin.de> (raw)
In-Reply-To: <tkrat.b8d0b3fd0adbd091@s5r6.in-berlin.de>

The source files of firewire-core, firewire-ohci, firewire-sbp2, i.e.
 "drivers/firewire/fw-*.c"
are renamed to
 "drivers/firewire/core-*.c",
 "drivers/firewire/ohci.c",
 "drivers/firewire/sbp2.c".

The old fw- prefix was redundant to the directory name.  The new core-
prefix distinguishes the files according to which driver they belong to.

This change comes a little late, but still before further firewire
drivers are added as anticipated RSN.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
---

This is a git diff with rename detection; ditto patch 1/2.
A normal unified diff is available at
http://user.in-berlin.de/~s5r6/linux1394/pending/.

 drivers/firewire/Makefile                          |    8 ++++----
 drivers/firewire/{fw-card.c => core-card.c}        |    0
 drivers/firewire/{fw-cdev.c => core-cdev.c}        |    0
 drivers/firewire/{fw-device.c => core-device.c}    |    0
 drivers/firewire/{fw-iso.c => core-iso.c}          |    0
 .../firewire/{fw-topology.c => core-topology.c}    |    0
 .../{fw-transaction.c => core-transaction.c}       |    0
 drivers/firewire/{fw-ohci.c => ohci.c}             |    0
 drivers/firewire/{fw-sbp2.c => sbp2.c}             |    0
 9 files changed, 4 insertions(+), 4 deletions(-)
 rename drivers/firewire/{fw-card.c => core-card.c} (100%)
 rename drivers/firewire/{fw-cdev.c => core-cdev.c} (100%)
 rename drivers/firewire/{fw-device.c => core-device.c} (100%)
 rename drivers/firewire/{fw-iso.c => core-iso.c} (100%)
 rename drivers/firewire/{fw-topology.c => core-topology.c} (100%)
 rename drivers/firewire/{fw-transaction.c => core-transaction.c} (100%)
 rename drivers/firewire/{fw-ohci.c => ohci.c} (100%)
 rename drivers/firewire/{fw-sbp2.c => sbp2.c} (100%)

diff --git a/drivers/firewire/Makefile b/drivers/firewire/Makefile
index a7c31e9..bc3b9bf 100644
--- a/drivers/firewire/Makefile
+++ b/drivers/firewire/Makefile
@@ -2,10 +2,10 @@
 # Makefile for the Linux IEEE 1394 implementation
 #
 
-firewire-core-y += fw-card.o fw-topology.o fw-transaction.o fw-iso.o \
-                   fw-device.o fw-cdev.o
-firewire-ohci-y += fw-ohci.o
-firewire-sbp2-y += fw-sbp2.o
+firewire-core-y += core-card.o core-cdev.o core-device.o \
+                   core-iso.o core-topology.o core-transaction.o
+firewire-ohci-y += ohci.o
+firewire-sbp2-y += sbp2.o
 
 obj-$(CONFIG_FIREWIRE) += firewire-core.o
 obj-$(CONFIG_FIREWIRE_OHCI) += firewire-ohci.o
diff --git a/drivers/firewire/fw-card.c b/drivers/firewire/core-card.c
similarity index 100%
rename from drivers/firewire/fw-card.c
rename to drivers/firewire/core-card.c
diff --git a/drivers/firewire/fw-cdev.c b/drivers/firewire/core-cdev.c
similarity index 100%
rename from drivers/firewire/fw-cdev.c
rename to drivers/firewire/core-cdev.c
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/core-device.c
similarity index 100%
rename from drivers/firewire/fw-device.c
rename to drivers/firewire/core-device.c
diff --git a/drivers/firewire/fw-iso.c b/drivers/firewire/core-iso.c
similarity index 100%
rename from drivers/firewire/fw-iso.c
rename to drivers/firewire/core-iso.c
diff --git a/drivers/firewire/fw-topology.c b/drivers/firewire/core-topology.c
similarity index 100%
rename from drivers/firewire/fw-topology.c
rename to drivers/firewire/core-topology.c
diff --git a/drivers/firewire/fw-transaction.c b/drivers/firewire/core-transaction.c
similarity index 100%
rename from drivers/firewire/fw-transaction.c
rename to drivers/firewire/core-transaction.c
diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/ohci.c
similarity index 100%
rename from drivers/firewire/fw-ohci.c
rename to drivers/firewire/ohci.c
diff --git a/drivers/firewire/fw-sbp2.c b/drivers/firewire/sbp2.c
similarity index 100%
rename from drivers/firewire/fw-sbp2.c
rename to drivers/firewire/sbp2.c
-- 
1.6.0.6


-- 
Stefan Richter
-=====-==--= -==- --=-=
http://arcgraph.de/sr/


      reply	other threads:[~2009-06-05 14:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-05 14:39 [RFC patch 1/2] firewire: reorganize header files Stefan Richter
2009-06-05 14:43 ` Stefan Richter [this message]

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=tkrat.9c353e14a798ecf3@s5r6.in-berlin.de \
    --to=stefanr@s5r6.in-berlin.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux1394-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

all inboxes | Powered by JetHome®