> -----Original Message----- > From: Xie, Huawei > Sent: Monday, January 4, 2016 9:52 AM > To: dev at dpdk.org > Cc: Mcnamara, John; Tan, Jianfeng; Xie, Huawei > Subject: [PATCH] fix checkpatch errors > > Signed-off-by: Huawei Xie <huawei.xie at intel.com> ... > mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name)); > - return (rte_mempool_lookup((const char *)pool_name)); > + return rte_mempool_lookup((const char *)pool_name);
Hi Huawei, Assume this patch is to solve below error (reported by checkpatch): ERROR: return is not a function, parentheses are not required So maybe above fix is not necessary? Involve more people to discuss. And please include the error message in the commit message. Thanks, Jianfeng