mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-25 02:52:51 +03:00
This patch makes the necessary modifications to the gk20a driver to allow building it as a module. Bug 1476801 Change-Id: I88c4e1c1867baa1c2d010ac6e0c30bdb5fd63b91 Signed-off-by: Lauri Peltonen <lpeltonen@nvidia.com> Reviewed-on: http://git-master/r/380970 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
38 lines
665 B
Makefile
38 lines
665 B
Makefile
|
|
GCOV_PROFILE := y
|
|
ccflags-y += -Idrivers/devfreq
|
|
ccflags-y += -Wno-multichar
|
|
ccflags-y += -Werror
|
|
|
|
nvgpu-y := \
|
|
gk20a.o \
|
|
as_gk20a.o \
|
|
ctrl_gk20a.o \
|
|
fifo_gk20a.o \
|
|
channel_gk20a.o \
|
|
channel_sync_gk20a.o \
|
|
debug_gk20a.o \
|
|
dbg_gpu_gk20a.o \
|
|
regops_gk20a.o \
|
|
gr_gk20a.o \
|
|
kind_gk20a.o \
|
|
mm_gk20a.o \
|
|
pmu_gk20a.o \
|
|
priv_ring_gk20a.o \
|
|
clk_gk20a.o \
|
|
therm_gk20a.o \
|
|
gr_ctx_gk20a_sim.o \
|
|
gr_ctx_gk20a.o \
|
|
gk20a_gating_reglist.o \
|
|
gk20a_scale.o \
|
|
gk20a_sysfs.o \
|
|
ltc_gk20a.o \
|
|
fb_gk20a.o \
|
|
hal.o \
|
|
hal_gk20a.o \
|
|
gk20a_allocator.o \
|
|
platform_gk20a_generic.o
|
|
nvgpu-$(CONFIG_TEGRA_GK20A) += platform_gk20a_tegra.o
|
|
|
|
obj-$(CONFIG_GK20A) := nvgpu.o
|