DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [DPDK] /driver/bus/ifpga: Fix a brackets unmatch
@ 2019-01-14  6:01 AndyPei
  2019-01-16 11:29 ` Xu, Rosen
  2019-01-17  5:32 ` [dpdk-dev] [DPDK] bus/ifpga: fix " Andy Pei
  0 siblings, 2 replies; 6+ messages in thread
From: AndyPei @ 2019-01-14  6:01 UTC (permalink / raw)
  To: dev; +Cc: rosen.xu, tianfei.zhang, andy.pei

The code

extern "C" {

miss a related

}

fixes: 05fa3d4a6539
cc: rosen.xu@intel.com
cc: tianfei.zhang@intel.com
cc: andy.pei@intel.com

Signed-off-by: AndyPei <andy.pei@intel.com>
---
 drivers/bus/ifpga/rte_bus_ifpga.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/bus/ifpga/rte_bus_ifpga.h b/drivers/bus/ifpga/rte_bus_ifpga.h
index d53c0f4..0bf43ba 100644
--- a/drivers/bus/ifpga/rte_bus_ifpga.h
+++ b/drivers/bus/ifpga/rte_bus_ifpga.h
@@ -13,7 +13,7 @@
 
 #ifdef __cplusplus
 extern "C" {
-#endif
+#endif /* __cplusplus */
 
 #include <rte_bus.h>
 #include <rte_pci.h>
@@ -143,4 +143,8 @@ struct rte_afu_driver {
 #define RTE_PMD_REGISTER_AFU_ALIAS(nm, alias)\
 static const char *afudrvinit_ ## nm ## _alias = RTE_STR(alias)
 
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
 #endif /* _RTE_BUS_IFPGA_H_ */
-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-01-18 18:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-14  6:01 [dpdk-dev] [DPDK] /driver/bus/ifpga: Fix a brackets unmatch AndyPei
2019-01-16 11:29 ` Xu, Rosen
2019-01-17  5:32 ` [dpdk-dev] [DPDK] bus/ifpga: fix " Andy Pei
2019-01-17  8:36   ` Xu, Rosen
2019-01-18 11:09   ` [dpdk-dev] [PATCH v2] bus/ifpga: fix build for cpp applications Ferruh Yigit
2019-01-18 18:57     ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).