Andrew Jeffery | 5335f09 | 2018-08-09 14:56:08 +0930 | [diff] [blame] | 1 | /* SPDX-License-Identifier: Apache-2.0 */ |
2 | /* Copyright (C) 2018 IBM Corp. */ | ||||
3 | |||||
4 | #ifndef TRANSPORT_H | ||||
5 | #define TRANSPORT_H | ||||
6 | |||||
7 | #include "mbox.h" | ||||
8 | |||||
9 | struct transport_ops { | ||||
10 | int (*flush_events)(struct mbox_context *context); | ||||
11 | }; | ||||
12 | |||||
13 | #endif /* TRANSPORT_H */ |