Commit 9a6c7821 authored by Wolfram Sang's avatar Wolfram Sang Committed by Thomas Bogendoerfer
Browse files

vlynq: remove bus driver

There are no users with a vlynq_driver in the Kernel tree. Also, only
the AR7 platform ever initialized a VLYNQ bus, but AR7 is going to be
removed from the Kernel. OpenWRT had some out-of-tree drivers which they
probably intended to upport, but AR7 devices are even there not
supported anymore because they are "stuck with Kernel
3.18" [1]. This code can go.

[1] https://openwrt.org/docs/techref/targets/ar7



Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent f1067280
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -22963,13 +22963,6 @@ W: https://linuxtv.org
T:	git git://linuxtv.org/media_tree.git
F:	drivers/media/test-drivers/vivid/*
VLYNQ BUS
M:	Florian Fainelli <f.fainelli@gmail.com>
L:	openwrt-devel@lists.openwrt.org (subscribers-only)
S:	Maintained
F:	drivers/vlynq/vlynq.c
F:	include/linux/vlynq.h
VM SOCKETS (AF_VSOCK)
M:	Stefano Garzarella <sgarzare@redhat.com>
L:	virtualization@lists.linux-foundation.org
+0 −2
Original line number Diff line number Diff line
@@ -135,8 +135,6 @@ source "drivers/uio/Kconfig"

source "drivers/vfio/Kconfig"

source "drivers/vlynq/Kconfig"

source "drivers/virt/Kconfig"

source "drivers/virtio/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -151,7 +151,6 @@ obj-$(CONFIG_BCMA) += bcma/
obj-$(CONFIG_VHOST_RING)	+= vhost/
obj-$(CONFIG_VHOST_IOTLB)	+= vhost/
obj-$(CONFIG_VHOST)		+= vhost/
obj-$(CONFIG_VLYNQ)		+= vlynq/
obj-$(CONFIG_GREYBUS)		+= greybus/
obj-$(CONFIG_COMEDI)		+= comedi/
obj-$(CONFIG_STAGING)		+= staging/

drivers/vlynq/Kconfig

deleted100644 → 0
+0 −21
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
menu "TI VLYNQ"
	depends on AR7

config VLYNQ
	bool "TI VLYNQ bus support"
	help
	  Support for Texas Instruments(R) VLYNQ bus.
	  The VLYNQ bus is a high-speed, serial and packetized
	  data bus which allows external peripherals of a SoC
	  to appear into the system's main memory.

	  If unsure, say N

config VLYNQ_DEBUG
	bool "VLYNQ bus debug"
	depends on VLYNQ && DEBUG_KERNEL
	help
	  Turn on VLYNQ bus debugging.

endmenu

drivers/vlynq/Makefile

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Makefile for kernel vlynq drivers
#

obj-$(CONFIG_VLYNQ) += vlynq.o
Loading