lib: make plugin API const-correct
[babeltrace.git] / include / babeltrace / graph / port-internal.h
index f4d4c0367b3b20b306e32bcd2eb2e95ebd9147c1..2a681dda069922c906b3f7fbc2d9823849951fb3 100644 (file)
@@ -1,9 +1,7 @@
-#ifndef BABELTRACE_COMPONENT_PORT_INTERNAL_H
-#define BABELTRACE_COMPONENT_PORT_INTERNAL_H
+#ifndef BABELTRACE_GRAPH_PORT_INTERNAL_H
+#define BABELTRACE_GRAPH_PORT_INTERNAL_H
 
 /*
- * BabelTrace - Babeltrace Component Port
- *
  * Copyright 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
  * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
@@ -37,20 +35,6 @@ struct bt_port {
        void *user_data;
 };
 
-static inline
-struct bt_port *bt_port_borrow_from_private(
-               struct bt_private_port *private_port)
-{
-       return (void *) private_port;
-}
-
-static inline
-struct bt_private_port *bt_private_port_from_port(
-               struct bt_port *port)
-{
-       return (void *) port;
-}
-
 BT_HIDDEN
 struct bt_port *bt_port_create(struct bt_component *parent_component,
                enum bt_port_type type, const char *name, void *user_data);
@@ -67,11 +51,9 @@ const char *bt_port_type_string(enum bt_port_type port_type)
                return "BT_PORT_TYPE_INPUT";
        case BT_PORT_TYPE_OUTPUT:
                return "BT_PORT_TYPE_OUTPUT";
-       case BT_PORT_TYPE_UNKOWN:
-               return "BT_PORT_TYPE_UNKOWN";
        default:
                return "(unknown)";
        }
 }
 
-#endif /* BABELTRACE_COMPONENT_PORT_INTERNAL_H */
+#endif /* BABELTRACE_GRAPH_PORT_INTERNAL_H */
This page took 0.027828 seconds and 4 git commands to generate.