Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a70f81c1 authored by Rambaldi's avatar Rambaldi Committed by Stefan Richter
Browse files

firedtv: rename files, variables, functions from firesat to firedtv



Combination of the following changes:

Sat, 17 Jan 2009 14:47:34 +0100
firedtv: rename variables and functions from firesat to firedtv

    Signed-off-by: default avatarRambaldi <Rambaldi@xs4all.nl>

    Additional changes by Stefan Richter:

    Renamed struct firedtv *firedtv to struct firedtv *fdtv and
    firedtv_foo_bar() to fdtv_foo_bar() for brevity.

Sat, 17 Jan 2009 13:07:44 +0100
firedtv: rename files from firesat to firedtv

    Signed-off-by: default avatarRambaldi <Rambaldi@xs4all.nl>

    Additional changes by Stefan Richter:

    Name the directory "firewire" instead of "firedtv".
    Standardize on "-" instead of "_" in file names, because that's what
    drivers/firewire/ and drivers/media/dvb/dvb-usb/ use too.
    Build fix.

Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent 291f006e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ comment "Supported SDMC DM1105 Adapters"
	depends on DVB_CORE && PCI && I2C
source "drivers/media/dvb/dm1105/Kconfig"

source "drivers/media/dvb/firesat/Kconfig"
source "drivers/media/dvb/firewire/Kconfig"

comment "Supported DVB Frontends"
	depends on DVB_CORE
+1 −1
Original line number Diff line number Diff line
@@ -4,4 +4,4 @@

obj-y        := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ dvb-usb/ pluto2/ siano/ dm1105/

obj-$(CONFIG_DVB_FIREDTV)	+= firesat/
obj-$(CONFIG_DVB_FIREDTV)	+= firewire/

drivers/media/dvb/firesat/cmp.h

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
#ifndef _CMP_H
#define _CMP_H

struct firesat;

int cmp_establish_pp_connection(struct firesat *firesat, int plug, int channel);
void cmp_break_pp_connection(struct firesat *firesat, int plug, int channel);

#endif /* _CMP_H */
+7 −7
Original line number Diff line number Diff line
firedtv-objs := firesat_1394.o	\
		firesat_dvb.o	\
		firesat_fe.o	\
		firesat_iso.o	\
		avc_api.o	\
firedtv-objs := firedtv-1394.o	\
		firedtv-dvb.o	\
		firedtv-fe.o	\
		firedtv-iso.o	\
		avc.o		\
		cmp.o		\
		firesat-rc.o	\
		firesat-ci.o
		firedtv-rc.o	\
		firedtv-ci.o

obj-$(CONFIG_DVB_FIREDTV) += firedtv.o

Loading