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

Commit 93d3ad90 authored by David Kershner's avatar David Kershner Committed by Greg Kroah-Hartman
Browse files

drivers: visorbus: move driver out of staging



Move the visorbus driver out of staging (drivers/staging/unisys/visorbus)
and to drivers/visorbus. Modify the configuration and makefiles so they
now reference the new location. The s-Par header file visorbus.h that is
referenced by all s-Par drivers, is being moved into include/linux.

Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 84f1e4b0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -14006,6 +14006,8 @@ UNISYS S-PAR DRIVERS
M:	David Kershner <david.kershner@unisys.com>
L:	sparmaintainer@unisys.com (Unisys internal)
S:	Supported
F:	include/linux/visorbus.h
F:	drivers/visorbus/
F:	drivers/staging/unisys/

UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
+2 −0
Original line number Diff line number Diff line
@@ -211,4 +211,6 @@ source "drivers/mux/Kconfig"

source "drivers/opp/Kconfig"

source "drivers/visorbus/Kconfig"

endmenu
+1 −0
Original line number Diff line number Diff line
@@ -184,3 +184,4 @@ obj-$(CONFIG_FPGA) += fpga/
obj-$(CONFIG_FSI)		+= fsi/
obj-$(CONFIG_TEE)		+= tee/
obj-$(CONFIG_MULTIPLEXER)	+= mux/
obj-$(CONFIG_UNISYS_VISORBUS)	+= visorbus/
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ menuconfig UNISYSSPAR

if UNISYSSPAR

source "drivers/staging/unisys/visorbus/Kconfig"
source "drivers/staging/unisys/visornic/Kconfig"
source "drivers/staging/unisys/visorinput/Kconfig"
source "drivers/staging/unisys/visorhba/Kconfig"
+0 −1
Original line number Diff line number Diff line
#
# Makefile for Unisys SPAR drivers
#
obj-$(CONFIG_UNISYS_VISORBUS)		+= visorbus/
obj-$(CONFIG_UNISYS_VISORNIC)		+= visornic/
obj-$(CONFIG_UNISYS_VISORINPUT)		+= visorinput/
obj-$(CONFIG_UNISYS_VISORHBA)		+= visorhba/
Loading