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

Commit 07c254f9 authored by Trudy Shearer's avatar Trudy Shearer Committed by Gerrit - the friendly Code Review server
Browse files

msm: gud: Remove gud driver



Complete removal of gud mobicore driver.
The driver author delivers an updated version of this driver to
interested parties directly rendering this version obsolete.

Change-Id: I40498d3203b1d6ca04f2b5a2e65461851d84d2d4
Acked-by: default avatarTony Hamilton <tonyh@qti.qualcomm.com>
Signed-off-by: default avatarTrudy Shearer <tshearer@codeaurora.org>
parent 29f37c0b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -196,6 +196,4 @@ source "drivers/firmware/Kconfig"

source "drivers/bif/Kconfig"

source "drivers/gud/Kconfig"

endmenu
+0 −3
Original line number Diff line number Diff line
@@ -171,6 +171,3 @@ obj-$(CONFIG_BIF) += bif/

obj-$(CONFIG_SENSORS)		+= sensors/
obj-$(CONFIG_SENSORS_SSC)	+= sensors/

# <t-base drivers
obj-$(CONFIG_MOBICORE_DRIVER)	+= gud/

drivers/gud/Kconfig

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
#
# MobiCore configuration
#
config MOBICORE_DRIVER
    tristate "MobiCore Driver"    
    ---help---
      Enable Linux Kernel MobiCore Support

config MOBICORE_DEBUG
    bool "MobiCore Module debug mode"
    depends on MOBICORE_DRIVER
    ---help---
      Enable Debug mode in the MobiCore Driver.
      It enables printing information about mobicore operations

config MOBICORE_VERBOSE
    bool "MobiCore Module verbose debug mode"
    depends on MOBICORE_DEBUG
    ---help---
      Enable Verbose Debug mode in the MobiCore Driver.
      It enables printing extra information about mobicore operations
      Beware: this is only useful for debuging deep in the driver because
      it prints too much logs

config TRUSTONIC_TRUSTED_UI
    tristate "<t-base TUI"
    depends on MOBICORE_DRIVER
    ---help---
      Enable <t-base Trusted User Interface

config TRUSTONIC_TRUSTED_UI_FB_BLANK
    bool "<t-base TUI with fb_blank"
    depends on TRUSTONIC_TRUSTED_UI
    ---help---
    Blank the framebuffer before starting a TUI session

drivers/gud/Makefile

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
#
# Makefile for the <t-base core and trusted UI drivers
#

obj-$(CONFIG_MOBICORE_DRIVER) := MobiCoreDriver/
+0 −33
Original line number Diff line number Diff line
#
# Makefile for the <t-base core driver
#

GUD_ROOT_FOLDER := drivers/gud/

# add our modules to kernel.
obj-$(CONFIG_MOBICORE_DRIVER) += mcDrvModule.o

mcDrvModule-y := \
	admin.o \
	api.o \
	client.o \
	clientlib.o \
	clock.o \
	fastcall.o \
	logging.o \
	main.o \
	mcp.o \
	mmu.o \
	pm.o \
	scheduler.o \
	session.o

# Release mode by default
ccflags-y += -DNDEBUG
ccflags-y += -Wno-declaration-after-statement

ccflags-$(CONFIG_MOBICORE_DEBUG) += -DDEBUG

# MobiCore Driver includes
ccflags-y += -I$(GUD_ROOT_FOLDER)/MobiCoreDriver
Loading