Message ID | 1466504432-24187-12-git-send-email-ben.dooks@codethink.co.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Ben Dooks <ben.dooks@codethink.co.uk> wrote: > The __raw IO functions are not endian safe, so use the readl_relaxed > and writel_relaxed versions of these. > > Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> This patch has already been merged. Cheers,
On 22/06/16 11:37, Herbert Xu wrote: > Ben Dooks <ben.dooks@codethink.co.uk> wrote: >> The __raw IO functions are not endian safe, so use the readl_relaxed >> and writel_relaxed versions of these. >> >> Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> > > This patch has already been merged. > > Cheers, Apologies, only meant to repost the core patches.
diff --git a/drivers/char/hw_random/exynos-rng.c b/drivers/char/hw_random/exynos-rng.c index ed44561..23d3585 100644 --- a/drivers/char/hw_random/exynos-rng.c +++ b/drivers/char/hw_random/exynos-rng.c @@ -45,12 +45,12 @@ struct exynos_rng { static u32 exynos_rng_readl(struct exynos_rng *rng, u32 offset) { - return __raw_readl(rng->mem + offset); + return readl_relaxed(rng->mem + offset); } static void exynos_rng_writel(struct exynos_rng *rng, u32 val, u32 offset) { - __raw_writel(val, rng->mem + offset); + writel_relaxed(val, rng->mem + offset); } static int exynos_rng_configure(struct exynos_rng *exynos_rng)
The __raw IO functions are not endian safe, so use the readl_relaxed and writel_relaxed versions of these. Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> --- CC: Matt Mackall <mpm@selenic.com> CC: Krzysztof Kozlowski <k.kozlowski@samsung.com> CC: linux-crypto@vger.kernel.org CC: linux-arm-kernel@lists.infradead.org CC: linux-samsung-soc@vger.kernel.org --- drivers/char/hw_random/exynos-rng.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)