diff options
-rw-r--r-- | drivers/soc/tegra/fuse/fuse.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/soc/tegra/fuse/fuse.h b/drivers/soc/tegra/fuse/fuse.h index b3442770df09..3a398bf3572c 100644 --- a/drivers/soc/tegra/fuse/fuse.h +++ b/drivers/soc/tegra/fuse/fuse.h | |||
@@ -38,14 +38,14 @@ void tegra20_init_fuse_early(void); | |||
38 | u32 tegra20_fuse_early(const unsigned int offset); | 38 | u32 tegra20_fuse_early(const unsigned int offset); |
39 | #else | 39 | #else |
40 | static inline void tegra20_init_speedo_data(struct tegra_sku_info *sku_info) {} | 40 | static inline void tegra20_init_speedo_data(struct tegra_sku_info *sku_info) {} |
41 | static inline bool tegra20_spare_fuse_early(int spare_bit, void *fuse_base) | 41 | static inline bool tegra20_spare_fuse_early(int spare_bit) |
42 | { | 42 | { |
43 | return false; | 43 | return false; |
44 | } | 44 | } |
45 | static inline void tegra20_init_fuse_early(void); | 45 | static inline void tegra20_init_fuse_early(void) {} |
46 | static inline tegra20_fuse_early(const unsigned int offset); | 46 | static inline u32 tegra20_fuse_early(const unsigned int offset) |
47 | { | 47 | { |
48 | return 0; | 48 | return 0; |
49 | } | 49 | } |
50 | #endif | 50 | #endif |
51 | 51 | ||