.. | .. |
---|
50 | 50 | * @poll: see @rpmsg_poll(), optional |
---|
51 | 51 | * @get_signals: see @rpmsg_get_signals(), optional |
---|
52 | 52 | * @set_signals: see @rpmsg_set_signals(), optional |
---|
| 53 | + * @get_mtu: see @rpmsg_get_mtu(), optional |
---|
53 | 54 | * |
---|
54 | 55 | * Indirection table for the operations that a rpmsg backend should implement. |
---|
55 | 56 | * In addition to @destroy_ept, the backend must at least implement @send and |
---|
.. | .. |
---|
71 | 72 | poll_table *wait); |
---|
72 | 73 | int (*get_signals)(struct rpmsg_endpoint *ept); |
---|
73 | 74 | int (*set_signals)(struct rpmsg_endpoint *ept, u32 set, u32 clear); |
---|
| 75 | +#ifdef CONFIG_NO_GKI |
---|
| 76 | + ssize_t (*get_mtu)(struct rpmsg_endpoint *ept); |
---|
| 77 | +#endif |
---|
74 | 78 | }; |
---|
75 | 79 | |
---|
76 | 80 | int rpmsg_register_device(struct rpmsg_device *rpdev); |
---|