Re: [PATCH v6 04/13] crypto/dpaa2_sec: add basic crypto operations
From: De Lara Guarch, Pablo <hidden>
Date: 2017-03-27 13:58:29
quoted hunk ↗ jump to hunk
-----Original Message----- From: akhil.goyal@nxp.com [mailto:akhil.goyal@nxp.com] Sent: Friday, March 24, 2017 9:58 PM To: dev@dpdk.org Cc: thomas.monjalon@6wind.com; Doherty, Declan; De Lara Guarch, Pablo; Mcnamara, John; nhorman@tuxdriver.com; hemant.agrawal@nxp.com; Akhil Goyal Subject: [PATCH v6 04/13] crypto/dpaa2_sec: add basic crypto operations From: Akhil Goyal <redacted> Signed-off-by: Hemant Agrawal <redacted> Signed-off-by: Akhil Goyal <redacted> --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 181 ++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+)diff --git a/drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.cb/drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c index 378df4a..aa08922 100644
...
+
+static int
+dpaa2_sec_dev_configure(struct rte_cryptodev *dev __rte_unused)
+{
+ PMD_INIT_FUNC_TRACE();
+
+ return -ENOTSUP;
+}
+There have been an API change here, so this configure function has another parameter, "struct rte_cryptodev_config". If you need to send another version, make the change (rebase against latest subtree). If not, I will make the change for you. Thanks, Pablo