Module: xenomai-2.6 Branch: master Commit: c0f19c0b9f23a2d8698ab6cab00182bc6b68346d URL: http://git.xenomai.org/?p=xenomai-2.6.git;a=commit;h=c0f19c0b9f23a2d8698ab6cab00182bc6b68346d
Author: Philippe Gerum <[email protected]> Date: Mon Jun 15 15:08:28 2015 +0200 nucleus: fix calibration return for imx7 --- include/asm-arm/calibration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm-arm/calibration.h b/include/asm-arm/calibration.h index aad3839..7b2602c 100644 --- a/include/asm-arm/calibration.h +++ b/include/asm-arm/calibration.h @@ -50,7 +50,7 @@ static inline unsigned long xnarch_get_sched_latency (void) #elif defined(CONFIG_ARCH_MX6) return 2000; #elif defined(CONFIG_SOC_IMX7) - ulat = 2500; + return 2500; #elif defined(CONFIG_ARCH_OMAP) return cpu_is_omap44xx() ? 2500 : 5000; #else _______________________________________________ Xenomai-git mailing list [email protected] http://xenomai.org/mailman/listinfo/xenomai-git
