On Tue, 4 Jul 2017 17:13:28 +0100 Ferruh Yigit <ferruh.yi...@intel.com> wrote:
> + > + if (nl_msg->err == 0 && recv_len != expected_len) > + pr_info("Expected and received len not match " > + "%zu - %zu\n", recv_len, expected_len); > + } > + Checkpatch complains about string split, just put the whole string on one line. pr_info("Expected and received len not match %zu - %zu\n", recv_len, expected_len) WARNING: quoted string split across lines #99: FILE: lib/librte_eal/linuxapp/unci/unci_nl.c:99: + pr_info("Expected and received len not match " + "%zu - %zu\n", recv_len, expected_len);