[dpdk-dev] rte_ethdev.h: fix make sure that all functions has C linkage type.

Message ID 1437751105-32067-1-git-send-email-konstantin.ananyev@intel.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Ananyev, Konstantin July 24, 2015, 3:18 p.m. UTC
  Move #ifdef __cplusplus to the end of the file.

Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
---
 lib/librte_ether/rte_ethdev.h | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
  

Comments

Thomas Monjalon July 24, 2015, 4:28 p.m. UTC | #1
> Move #ifdef __cplusplus to the end of the file.
> 
> Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

Fixes: 64b7acd861b1 ("ethdev: add multicast address filtering")

Applied, thanks
  

Patch

diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h
index c901a2c..9b50858 100644
--- a/lib/librte_ether/rte_ethdev.h
+++ b/lib/librte_ether/rte_ethdev.h
@@ -3793,10 +3793,6 @@  int rte_eth_dev_get_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
  */
 int rte_eth_dev_set_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info);
 
-#ifdef __cplusplus
-}
-#endif
-
 /**
  * Set the list of multicast addresses to filter on an Ethernet device.
  *
@@ -3882,4 +3878,9 @@  extern int rte_eth_timesync_read_rx_timestamp(uint8_t port_id,
  */
 extern int rte_eth_timesync_read_tx_timestamp(uint8_t port_id,
 					      struct timespec *timestamp);
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _RTE_ETHDEV_H_ */