aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHongjun Ni <hongjun.ni@intel.com>2019-01-04 20:07:39 +0800
committerHongjun Ni <hongjun.ni@intel.com>2019-01-04 20:07:39 +0800
commitb70c4a3f70c08d93afb52ecb1bdd50a50feb1e1f (patch)
treef9ede48508d9c6470f04d03c5552223816c9a9ff
parentc0a6230377409eea65dae3d37f62dfc3e469fa94 (diff)
Fix head file definition
Change-Id: If5d675dcc2a052d0f654b3a11ed0cd0b4c109c82 Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
-rw-r--r--src/plugins/ietf/ietf_interface.h6
-rw-r--r--src/plugins/sc_plugins.h6
-rw-r--r--src/scvpp/src/sc_vpp_comm.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/ietf/ietf_interface.h b/src/plugins/ietf/ietf_interface.h
index 5a430be..756f6ef 100644
--- a/src/plugins/ietf/ietf_interface.h
+++ b/src/plugins/ietf/ietf_interface.h
@@ -13,8 +13,8 @@
* limitations under the License.
*/
-#ifndef SC_INTERFACE_H
-#define SC_INTERFACE_H
+#ifndef __IETF_INTERFACE_H__
+#define __IETF_INTERFACE_H__
#include "sc_vpp_comm.h"
@@ -54,5 +54,5 @@ int
ietf_interface_subscribe_events(sr_session_ctx_t *session,
sr_subscription_ctx_t **subscription);
-#endif /* SC_INTERFACE_H */
+#endif /* __IETF_INTERFACE_H__ */
diff --git a/src/plugins/sc_plugins.h b/src/plugins/sc_plugins.h
index 8b76a37..9e9f774 100644
--- a/src/plugins/sc_plugins.h
+++ b/src/plugins/sc_plugins.h
@@ -13,8 +13,8 @@
* limitations under the License.
*/
-#ifndef __SWEETCOMB_SYSREPO_PLUGINS__
-#define __SWEETCOMB_SYSREPO_PLUGINS__
+#ifndef __SC_PLUGINS_H__
+#define __SC_PLUGINS_H__
#include <sysrepo.h>
#include <sysrepo/values.h>
@@ -24,7 +24,7 @@
int sr_plugin_init_cb(sr_session_ctx_t *session, void **private_ctx);
void sr_plugin_cleanup_cb(sr_session_ctx_t *session, void *private_ctx);
-#endif //__SWEETCOMB_SYSREPO_PLUGINS__
+#endif //__SC_PLUGINS_H__
diff --git a/src/scvpp/src/sc_vpp_comm.h b/src/scvpp/src/sc_vpp_comm.h
index 7c914f0..b5bb333 100644
--- a/src/scvpp/src/sc_vpp_comm.h
+++ b/src/scvpp/src/sc_vpp_comm.h
@@ -14,8 +14,8 @@
* limitations under the License.
*/
-#ifndef __SWEETCOMB_VPP_OPERATION__
-#define __SWEETCOMB_VPP_OPERATION__
+#ifndef __SC_VPP_COMMM_H__
+#define __SC_VPP_COMMM_H__
#include <vapi/vapi.h>
#include <vapi/vpe.api.vapi.h>
DEFINE_VAPI_MSG_IDS_VPE_API_JSON;
@@ -124,7 +124,7 @@ int sc_connect_vpp();
int sc_disconnect_vpp();
int sc_end_with(const char* str, const char* end);
extern vapi_ctx_t g_vapi_ctx_instance;
-#endif //__SWEETCOMB_VPP_OPERATION__
+#endif //__SC_VPP_COMMM_H__