summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/Makefile
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2018-05-24 18:25:41 -0400
committerTejal Kudav <tkudav@nvidia.com>2018-06-14 09:44:07 -0400
commitd71d38087ded679f60714dae3a859523a19df04f (patch)
tree61439d294705ef91ce08ae4c02d4921eec943283 /drivers/gpu/nvgpu/Makefile
parent5215d65c25b5e76c19d9d12b03c52f69e2d40227 (diff)
gpu: nvgpu: Separate timer from bus
Code touching timer registers was combined with bus code. They're two logically separate register spaces, so separate the code accordingly. JIRA NVGPU-588 Change-Id: I40e2925ff156669f41ddc1f2e7714f92a2da367b Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1730893 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/Makefile')
-rw-r--r--drivers/gpu/nvgpu/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/Makefile b/drivers/gpu/nvgpu/Makefile
index 8f2e72d6..67a9c7f1 100644
--- a/drivers/gpu/nvgpu/Makefile
+++ b/drivers/gpu/nvgpu/Makefile
@@ -23,9 +23,10 @@ obj-$(CONFIG_GK20A) := nvgpu.o
23# OS independent parts of nvgpu. The work to collect files here 23# OS independent parts of nvgpu. The work to collect files here
24# is in progress. 24# is in progress.
25 25
26nvgpu-y += common/bus/bus.o \ 26nvgpu-y += common/bus/bus_gk20a.o \
27 common/bus/bus_gk20a.o \ 27 common/bus/bus_gm20b.o \
28 common/bus/bus_gm20b.o 28 common/ptimer/ptimer.o \
29 common/ptimer/ptimer_gk20a.o
29 30
30nvgpu-y += \ 31nvgpu-y += \
31 common/linux/kmem.o \ 32 common/linux/kmem.o \