crypto/kasumi: fix extern declaration

gcc 10 defaults to fno-common and it reports:

crypto_kasumi_rte_kasumi_pmd_ops.c.o:(.data.rel+0x0):
multiple definition of `rte_kasumi_pmd_ops';
crypto_kasumi_rte_kasumi_pmd.c.o:(.bss+0x8): first defined here

Fix by making rte_kasumi_pmd_ops extern in the header file.

Fixes: 2773c86d061a ("crypto/kasumi: add driver for KASUMI library")
Cc: stable@dpdk.org

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
This commit is contained in:
Kevin Traynor 2020-05-06 10:45:18 +01:00 committed by Akhil Goyal
parent d954825a24
commit 6a6b5d5616

View File

@ -76,6 +76,6 @@ kasumi_set_session_parameters(MB_MGR *mgr, struct kasumi_session *sess,
/** device specific operations function pointer structure */
struct rte_cryptodev_ops *rte_kasumi_pmd_ops;
extern struct rte_cryptodev_ops *rte_kasumi_pmd_ops;
#endif /* _KASUMI_PMD_PRIVATE_H_ */