summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/ltc_gp106.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/ltc_gp106.c')
-rw-r--r--drivers/gpu/nvgpu/gp106/ltc_gp106.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/drivers/gpu/nvgpu/gp106/ltc_gp106.c b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
deleted file mode 100644
index 755e4b05..00000000
--- a/drivers/gpu/nvgpu/gp106/ltc_gp106.c
+++ /dev/null
@@ -1,27 +0,0 @@
1/*
2 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13
14#include "gk20a/gk20a.h"
15#include "gm20b/ltc_gm20b.h"
16#include "gp10b/ltc_gp10b.h"
17#include "gp106/ltc_gp106.h"
18
19void gp106_init_ltc(struct gpu_ops *gops)
20{
21 gp10b_init_ltc(gops);
22
23 /* dGPU does not need the LTC hack */
24 gops->ltc.cbc_fix_config = NULL;
25 gops->ltc.init_cbc = NULL;
26 gops->ltc.init_fs_state = gm20b_ltc_init_fs_state;
27}