@@ -50,10 +50,8 @@ struct rpmsg_device_ops {
50
50
* @destroy_ept: see @rpmsg_destroy_ept(), required
51
51
* @send: see @rpmsg_send(), required
52
52
* @sendto: see @rpmsg_sendto(), optional
53
- * @send_offchannel: see @rpmsg_send_offchannel(), optional
54
53
* @trysend: see @rpmsg_trysend(), required
55
54
* @trysendto: see @rpmsg_trysendto(), optional
56
- * @trysend_offchannel: see @rpmsg_trysend_offchannel(), optional
57
55
* @poll: see @rpmsg_poll(), optional
58
56
* @set_flow_control: see @rpmsg_set_flow_control(), optional
59
57
* @get_mtu: see @rpmsg_get_mtu(), optional
@@ -67,13 +65,9 @@ struct rpmsg_endpoint_ops {
67
65
68
66
int (* send )(struct rpmsg_endpoint * ept , void * data , int len );
69
67
int (* sendto )(struct rpmsg_endpoint * ept , void * data , int len , u32 dst );
70
- int (* send_offchannel )(struct rpmsg_endpoint * ept , u32 src , u32 dst ,
71
- void * data , int len );
72
68
73
69
int (* trysend )(struct rpmsg_endpoint * ept , void * data , int len );
74
70
int (* trysendto )(struct rpmsg_endpoint * ept , void * data , int len , u32 dst );
75
- int (* trysend_offchannel )(struct rpmsg_endpoint * ept , u32 src , u32 dst ,
76
- void * data , int len );
77
71
__poll_t (* poll )(struct rpmsg_endpoint * ept , struct file * filp ,
78
72
poll_table * wait );
79
73
int (* set_flow_control )(struct rpmsg_endpoint * ept , bool pause , u32 dst );
0 commit comments