We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b458557 commit cbcea29Copy full SHA for cbcea29
arch/arm/mach-mx5/cpu.c
@@ -16,7 +16,7 @@
16
#include <linux/init.h>
17
#include <linux/module.h>
18
#include <mach/hardware.h>
19
-#include <asm/io.h>
+#include <linux/io.h>
20
21
static int mx5_cpu_rev = -1;
22
@@ -67,7 +67,8 @@ static int __init mx51_neon_fixup(void)
67
if (!cpu_is_mx51())
68
return 0;
69
70
- if (mx51_revision() < IMX_CHIP_REVISION_3_0 && (elf_hwcap & HWCAP_NEON)) {
+ if (mx51_revision() < IMX_CHIP_REVISION_3_0 &&
71
+ (elf_hwcap & HWCAP_NEON)) {
72
elf_hwcap &= ~HWCAP_NEON;
73
pr_info("Turning off NEON support, detected broken NEON implementation\n");
74
}
0 commit comments