Commit 200d876a authored by Thierry Reding's avatar Thierry Reding

soc/tegra: fuse: Constify tegra_fuse_info structures

These structures contain read-only data and are never modified, so they
can be const.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 24ef5745
...@@ -56,7 +56,7 @@ struct tegra_fuse_info { ...@@ -56,7 +56,7 @@ struct tegra_fuse_info {
static void __iomem *fuse_base; static void __iomem *fuse_base;
static struct clk *fuse_clk; static struct clk *fuse_clk;
static struct tegra_fuse_info *fuse_info; static const struct tegra_fuse_info *fuse_info;
u32 tegra30_fuse_readl(const unsigned int offset) u32 tegra30_fuse_readl(const unsigned int offset)
{ {
...@@ -78,18 +78,18 @@ u32 tegra30_fuse_readl(const unsigned int offset) ...@@ -78,18 +78,18 @@ u32 tegra30_fuse_readl(const unsigned int offset)
return val; return val;
} }
static struct tegra_fuse_info tegra30_info = { static const struct tegra_fuse_info tegra30_info = {
.size = 0x2a4, .size = 0x2a4,
.spare_bit = 0x144, .spare_bit = 0x144,
.speedo_idx = SPEEDO_TEGRA30, .speedo_idx = SPEEDO_TEGRA30,
}; };
static struct tegra_fuse_info tegra114_info = { static const struct tegra_fuse_info tegra114_info = {
.size = 0x2a0, .size = 0x2a0,
.speedo_idx = SPEEDO_TEGRA114, .speedo_idx = SPEEDO_TEGRA114,
}; };
static struct tegra_fuse_info tegra124_info = { static const struct tegra_fuse_info tegra124_info = {
.size = 0x300, .size = 0x300,
.speedo_idx = SPEEDO_TEGRA124, .speedo_idx = SPEEDO_TEGRA124,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment