From ff12bcef16abb63d66aa75235c2def3d605e24d3 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 8 May 2014 21:52:40 +0000 Subject: kernel: fix some compile warnings with kernel 3.14 Signed-off-by: Hauke Mehrtens SVN-Revision: 40734 --- target/linux/generic/patches-3.14/997-device_tree_cmdline.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target/linux/generic/patches-3.14/997-device_tree_cmdline.patch') diff --git a/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch b/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch index 8e87b1f03b..bc8e7091d5 100644 --- a/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch +++ b/target/linux/generic/patches-3.14/997-device_tree_cmdline.patch @@ -6,7 +6,7 @@ strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE)); + p = of_get_flat_dt_prop(node, "bootargs-append", &l); + if (p != NULL && l > 0) -+ strlcat(data, p, min(strlen(data) + (int)l, COMMAND_LINE_SIZE)); ++ strlcat(data, p, min_t(int, strlen(data) + (int)l, COMMAND_LINE_SIZE)); /* * CONFIG_CMDLINE is meant to be a default in case nothing else -- cgit v1.2.3