mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 06:37:05 +07:00
e3e5a3d3da
This is a simple stm_source class device driver (kernelspace stm trace source) that registers a console and sends kernel messages over STM devices. Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10 lines
184 B
Makefile
10 lines
184 B
Makefile
obj-$(CONFIG_STM) += stm_core.o
|
|
|
|
stm_core-y := core.o policy.o
|
|
|
|
obj-$(CONFIG_STM_DUMMY) += dummy_stm.o
|
|
|
|
obj-$(CONFIG_STM_SOURCE_CONSOLE) += stm_console.o
|
|
|
|
stm_console-y := console.o
|