From: Stefan Richter Date: Fri, 5 Jun 2009 14:26:18 +0000 (+0200) Subject: firewire: rename source files X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e71d31da062095d8b0b02a26fb5e8879e8d3d0de;p=linux-beck.git firewire: rename source files 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 --- diff --git a/drivers/firewire/Makefile b/drivers/firewire/Makefile index a7c31e9039c1..bc3b9bf822bf 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