firewire: rename source files
authorStefan Richter <stefanr@s5r6.in-berlin.de>
Fri, 5 Jun 2009 14:26:18 +0000 (16:26 +0200)
committerStefan Richter <stefanr@s5r6.in-berlin.de>
Fri, 5 Jun 2009 14:26:18 +0000 (16:26 +0200)
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>
drivers/firewire/Makefile
drivers/firewire/core-card.c [moved from drivers/firewire/fw-card.c with 100% similarity]
drivers/firewire/core-cdev.c [moved from drivers/firewire/fw-cdev.c with 100% similarity]
drivers/firewire/core-device.c [moved from drivers/firewire/fw-device.c with 100% similarity]
drivers/firewire/core-iso.c [moved from drivers/firewire/fw-iso.c with 100% similarity]
drivers/firewire/core-topology.c [moved from drivers/firewire/fw-topology.c with 100% similarity]
drivers/firewire/core-transaction.c [moved from drivers/firewire/fw-transaction.c with 100% similarity]
drivers/firewire/ohci.c [moved from drivers/firewire/fw-ohci.c with 100% similarity]
drivers/firewire/sbp2.c [moved from drivers/firewire/fw-sbp2.c with 100% similarity]

index a7c31e9..bc3b9bf 100644 (file)
@@ -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