summaryrefslogtreecommitdiffstats
path: root/include/linux/platform/tegra
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2017-02-02 01:21:27 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-02-07 04:55:46 -0500
commitd5c03ad30f9de4e325fc7e092f9b93bc2b298824 (patch)
treee75ef72f361016b441caf30816f8f4a429919bf5 /include/linux/platform/tegra
parent99ff420f429ad14362fe0c916406b25073eb0d56 (diff)
platform: tegra: Remove duplicate kfuse driver
The kfuse driver is unified to a single driver and implemented in main kernel repo. The kfuse on t18x repo is not used any more and hence removing this driver. bug 200257381 Change-Id: I87e45f28d27a0967994aae3132119cb40179486a Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/1297755 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Sujeet Baranwal <sbaranwal@nvidia.com> Reviewed-by: Pranami Bhattacharya <pranamib@nvidia.com> GVS: Gerrit_Virtual_Submit
Diffstat (limited to 'include/linux/platform/tegra')
-rw-r--r--include/linux/platform/tegra/tegra18_kfuse.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/linux/platform/tegra/tegra18_kfuse.h b/include/linux/platform/tegra/tegra18_kfuse.h
deleted file mode 100644
index 2ceb706f1..000000000
--- a/include/linux/platform/tegra/tegra18_kfuse.h
+++ /dev/null
@@ -1,37 +0,0 @@
1/*
2 * Copyright (c) 2015, 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#ifndef TEGRA18_KFUSE_H
15#define TEGRA18_KFUSE_H
16
17#include <linux/platform/tegra/tegra_kfuse.h>
18
19struct kfuse;
20
21#ifdef CONFIG_TEGRA_KFUSE
22void tegra_kfuse_disable_sensing(void);
23int tegra_kfuse_enable_sensing(void);
24#else
25
26static inline void tegra_kfuse_disable_sensing(void)
27{
28}
29
30static inline int tegra_kfuse_enable_sensing(void)
31{
32 return -ENOSYS;
33}
34
35#endif
36
37#endif