+static inline void
+term_cap_set_operations(struct termport_capability* cap,
+ struct termport_cap_ops* ops)
+{
+ cap->cap_ops = ops;
+}
+
+void
+term_notify_data_avaliable(struct termport_capability* cap);
+
+#define termport_default_ops \
+ ({ \
+ extern struct termport_cap_ops default_termport_cap_ops;\
+ &default_termport_cap_ops; \
+ })
+