diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2013-11-20 11:05:02 +1100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-11-21 10:33:45 +1100 |
commit | 148924f7a282b3acb1f8868ae03c3f76be301d8d (patch) | |
tree | 63be2b615699bab43f2b593ed482d739a1c6932d /arch | |
parent | 3eb906c6b6c123513718e7742a96a4189f900382 (diff) | |
download | linux-exynos-148924f7a282b3acb1f8868ae03c3f76be301d8d.tar.gz linux-exynos-148924f7a282b3acb1f8868ae03c3f76be301d8d.tar.bz2 linux-exynos-148924f7a282b3acb1f8868ae03c3f76be301d8d.zip |
powerpc/pseries: Fix SMP=n build of rng.c
In commit a489043 "Implement arch_get_random_long() based on H_RANDOM" I
broke the SMP=n build. We were getting plpar_wrappers.h via spinlock.h
which breaks when SMP=n.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/pseries/rng.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/rng.c b/arch/powerpc/platforms/pseries/rng.c index a702f1c08242..72a102758d4e 100644 --- a/arch/powerpc/platforms/pseries/rng.c +++ b/arch/powerpc/platforms/pseries/rng.c @@ -13,6 +13,7 @@ #include <linux/of.h> #include <asm/archrandom.h> #include <asm/machdep.h> +#include <asm/plpar_wrappers.h> static int pseries_get_random_long(unsigned long *v) |