diff options
| author | Laxman Dewangan <ldewangan@nvidia.com> | 2017-02-02 01:21:27 -0500 |
|---|---|---|
| committer | mobile promotions <svcmobile_promotions@nvidia.com> | 2017-02-07 04:55:46 -0500 |
| commit | d5c03ad30f9de4e325fc7e092f9b93bc2b298824 (patch) | |
| tree | e75ef72f361016b441caf30816f8f4a429919bf5 /include/linux/platform/tegra | |
| parent | 99ff420f429ad14362fe0c916406b25073eb0d56 (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.h | 37 |
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 | |||
| 19 | struct kfuse; | ||
| 20 | |||
| 21 | #ifdef CONFIG_TEGRA_KFUSE | ||
| 22 | void tegra_kfuse_disable_sensing(void); | ||
| 23 | int tegra_kfuse_enable_sensing(void); | ||
| 24 | #else | ||
| 25 | |||
| 26 | static inline void tegra_kfuse_disable_sensing(void) | ||
| 27 | { | ||
| 28 | } | ||
| 29 | |||
| 30 | static inline int tegra_kfuse_enable_sensing(void) | ||
| 31 | { | ||
| 32 | return -ENOSYS; | ||
| 33 | } | ||
| 34 | |||
| 35 | #endif | ||
| 36 | |||
| 37 | #endif | ||
