Commit 58c08df5 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Mauro Carvalho Chehab
Browse files

media: rc: remove tango ir driver and keymap



The tango platform was removed, so the driver is no longer needed.

Cc: Marc Gonzalez <marc.w.gonzalez@free.fr>
Acked-by: default avatarRob Herring <robh@kernel.org>
Acked-by: default avatarMans Rullgard <mans@mansr.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 12ccb762
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -125,7 +125,6 @@ properties:
      - rc-snapstream-firefly
      - rc-streamzap
      - rc-su3000
      - rc-tango
      - rc-tanix-tx3mini
      - rc-tanix-tx5max
      - rc-tbs-nec
+0 −21
Original line number Diff line number Diff line
Sigma Designs Tango IR NEC/RC-5/RC-6 decoder (SMP86xx and SMP87xx)

Required properties:

- compatible: "sigma,smp8642-ir"
- reg: address/size of NEC+RC5 area, address/size of RC6 area
- interrupts: spec for IR IRQ
- clocks: spec for IR clock (typically the crystal oscillator)

Optional properties:

- linux,rc-map-name: see Documentation/devicetree/bindings/media/rc.txt

Example:

	ir@10518 {
		compatible = "sigma,smp8642-ir";
		reg = <0x10518 0x18>, <0x105e0 0x1c>;
		interrupts = <21 IRQ_TYPE_EDGE_RISING>;
		clocks = <&xtal>;
	};
+0 −10
Original line number Diff line number Diff line
@@ -499,16 +499,6 @@ config IR_SIR
	   To compile this driver as a module, choose M here: the module will
	   be called sir-ir.

config IR_TANGO
	tristate "Sigma Designs SMP86xx IR decoder"
	depends on RC_CORE
	depends on ARCH_TANGO || COMPILE_TEST
	help
	   Adds support for the HW IR decoder embedded on Sigma Designs
	   Tango-based systems (SMP86xx, SMP87xx).
	   The HW decoder supports NEC, RC-5, RC-6 IR protocols.
	   When compiled as a module, look for tango-ir.

config RC_XBOX_DVD
	tristate "Xbox DVD Movie Playback Kit"
	depends on RC_CORE
+0 −1
Original line number Diff line number Diff line
@@ -48,6 +48,5 @@ obj-$(CONFIG_IR_IMG) += img-ir/
obj-$(CONFIG_IR_SERIAL) += serial_ir.o
obj-$(CONFIG_IR_SIR) += sir_ir.o
obj-$(CONFIG_IR_MTK) += mtk-cir.o
obj-$(CONFIG_IR_TANGO) += tango-ir.o
obj-$(CONFIG_RC_XBOX_DVD) += xbox_remote.o
obj-$(CONFIG_IR_TOY) += ir_toy.o
+0 −1
Original line number Diff line number Diff line
@@ -100,7 +100,6 @@ obj-$(CONFIG_RC_MAP) += rc-adstech-dvb-t-pci.o \
			rc-reddo.o \
			rc-snapstream-firefly.o \
			rc-streamzap.o \
			rc-tango.o \
			rc-tanix-tx3mini.o \
			rc-tanix-tx5max.o \
			rc-tbs-nec.o \
Loading