Adding initial support for ftrace events in order to help with profiling and debugging. This initial set of events covers the ingress and egress handlers. Change-Id: I296d6fb9d009d8fdc2061e17d25e1275ee0a8a12 Signed-off-by: Harout Hedeshian <harouth@codeaurora.org>
15 lines
380 B
Makefile
15 lines
380 B
Makefile
#
|
|
# Makefile for the RMNET Data module
|
|
#
|
|
|
|
rmnet_data-y := rmnet_data_main.o
|
|
rmnet_data-y += rmnet_data_config.o
|
|
rmnet_data-y += rmnet_data_vnd.o
|
|
rmnet_data-y += rmnet_data_handlers.o
|
|
rmnet_data-y += rmnet_map_data.o
|
|
rmnet_data-y += rmnet_map_command.o
|
|
rmnet_data-y += rmnet_data_stats.o
|
|
obj-$(CONFIG_RMNET_DATA) += rmnet_data.o
|
|
|
|
CFLAGS_rmnet_data_main.o := -I$(src)
|