diff options
-rw-r--r-- | drivers/gpu/drm/tegra/nvdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/nvdec.c b/drivers/gpu/drm/tegra/nvdec.c index 48c90e26e90a..30105a93de9f 100644 --- a/drivers/gpu/drm/tegra/nvdec.c +++ b/drivers/gpu/drm/tegra/nvdec.c @@ -45,7 +45,8 @@ static inline struct nvdec *to_nvdec(struct tegra_drm_client *client) return container_of(client, struct nvdec, client); } -static void nvdec_writel(struct nvdec *nvdec, u32 value, unsigned int offset) +static inline void nvdec_writel(struct nvdec *nvdec, u32 value, + unsigned int offset) { writel(value, nvdec->regs + offset); } |