Commit 5c5f1301 authored by Thierry Reding's avatar Thierry Reding

drm/tegra: sor: Use unsigned int for register offsets

Register offsets are usually fairly small numbers, so an unsigned int is
more than enough to represent them.
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 7efe20cf
...@@ -232,13 +232,13 @@ static inline struct tegra_sor *to_sor(struct tegra_output *output) ...@@ -232,13 +232,13 @@ static inline struct tegra_sor *to_sor(struct tegra_output *output)
return container_of(output, struct tegra_sor, output); return container_of(output, struct tegra_sor, output);
} }
static inline u32 tegra_sor_readl(struct tegra_sor *sor, unsigned long offset) static inline u32 tegra_sor_readl(struct tegra_sor *sor, unsigned int offset)
{ {
return readl(sor->regs + (offset << 2)); return readl(sor->regs + (offset << 2));
} }
static inline void tegra_sor_writel(struct tegra_sor *sor, u32 value, static inline void tegra_sor_writel(struct tegra_sor *sor, u32 value,
unsigned long offset) unsigned int offset)
{ {
writel(value, sor->regs + (offset << 2)); writel(value, sor->regs + (offset << 2));
} }
......
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