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

Commit 01081f5a authored by Mathieu Poirier's avatar Mathieu Poirier Committed by Greg Kroah-Hartman
Browse files

coresight: moving to new "hwtracing" directory



Keeping drivers related to HW tracing on ARM, i.e coresight,
under "drivers/coresight" doesn't make sense when other
architectures start rolling out technologies of the same
nature.

As such creating a new "drivers/hwtracing" directory where all
drivers of the same kind can reside, reducing namespace
pollution under "drivers/".

Signed-off-by: default avatarMathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a2d6e184
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -953,7 +953,7 @@ ARM/CORESIGHT FRAMEWORK AND DRIVERS
M:	Mathieu Poirier <mathieu.poirier@linaro.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	drivers/coresight/*
F:	drivers/hwtracing/coresight/*
F:	Documentation/trace/coresight.txt
F:	Documentation/devicetree/bindings/arm/coresight.txt
F:	Documentation/ABI/testing/sysfs-bus-coresight-devices-*
+1 −1
Original line number Diff line number Diff line
@@ -1610,6 +1610,6 @@ config DEBUG_SET_MODULE_RONX
	  against certain classes of kernel exploits.
	  If in doubt, say "N".

source "drivers/coresight/Kconfig"
source "drivers/hwtracing/coresight/Kconfig"

endmenu
+1 −1
Original line number Diff line number Diff line
@@ -89,6 +89,6 @@ config DEBUG_ALIGN_RODATA

	  If in doubt, say N

source "drivers/coresight/Kconfig"
source "drivers/hwtracing/coresight/Kconfig"

endmenu
+1 −1
Original line number Diff line number Diff line
@@ -163,5 +163,5 @@ obj-$(CONFIG_POWERCAP) += powercap/
obj-$(CONFIG_MCB)		+= mcb/
obj-$(CONFIG_RAS)		+= ras/
obj-$(CONFIG_THUNDERBOLT)	+= thunderbolt/
obj-$(CONFIG_CORESIGHT)		+= coresight/
obj-$(CONFIG_CORESIGHT)		+= hwtracing/coresight/
obj-$(CONFIG_ANDROID)		+= android/
Loading