Jeremy Kerr | 4cdc200 | 2019-02-07 16:49:12 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: Apache-2.0 */ |
| 2 | |
| 3 | #ifndef _LIBMCTP_SERIAL_H |
| 4 | #define _LIBMCTP_SERIAL_H |
| 5 | |
Deepak Kodihalli | b11ad2c | 2019-02-28 03:42:22 -0600 | [diff] [blame] | 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Jeremy Kerr | 4cdc200 | 2019-02-07 16:49:12 +0800 | [diff] [blame] | 10 | #include "libmctp.h" |
| 11 | |
| 12 | struct mctp_binding_serial; |
| 13 | |
| 14 | struct mctp_binding_serial *mctp_serial_init(void); |
| 15 | int mctp_serial_get_fd(struct mctp_binding_serial *serial); |
| 16 | void mctp_serial_register_bus(struct mctp_binding_serial *serial, |
| 17 | struct mctp *mctp, mctp_eid_t eid); |
| 18 | int mctp_serial_read(struct mctp_binding_serial *serial); |
| 19 | int mctp_serial_open_path(struct mctp_binding_serial *serial, |
| 20 | const char *path); |
| 21 | void mctp_serial_open_fd(struct mctp_binding_serial *serial, int fd); |
| 22 | |
Deepak Kodihalli | b11ad2c | 2019-02-28 03:42:22 -0600 | [diff] [blame] | 23 | #ifdef __cplusplus |
| 24 | } |
| 25 | #endif |
| 26 | |
Jeremy Kerr | 4cdc200 | 2019-02-07 16:49:12 +0800 | [diff] [blame] | 27 | #endif /* _LIBMCTP_SERIAL_H */ |