summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Zhu <Richard.Zhu@freescale.com>2015-01-26 14:35:14 +0800
committerNitin Garg <nitin.garg@freescale.com>2015-09-17 09:21:17 -0500
commit3db94d9384235231aa966357049570d35b22af35 (patch)
tree4bf3a551da3bc44ec37579da636dc61bca6542f6
parent0d0b61ee62292d3df95752c6a393786926c038fb (diff)
MLK-10146 arm: mcc: fix one compile error when DYNAMIC_DEBUG is set
When CONFIG_DYNAMIC_DEBUG is configured, there is one compile error in mcc_linux.c file, the memcpy() is not defined. Fix it by including the linux/string.h header explicitly. Signed-off-by: Richard Zhu <Richard.Zhu@freescale.com>
-rw-r--r--arch/arm/mach-imx/mcc_linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mcc_linux.c b/arch/arm/mach-imx/mcc_linux.c
index dee595878082..948d64ac2398 100644
--- a/arch/arm/mach-imx/mcc_linux.c
+++ b/arch/arm/mach-imx/mcc_linux.c
@@ -14,6 +14,7 @@
*/
#include <linux/io.h>
+#include <linux/string.h>
#include <linux/wait.h>
#include <linux/imx_sema4.h>
#include "mcc_config.h"