1 /* SPDX-License-Identifier: Apache-2.0 */ 2 /* Copyright (C) 2018 IBM Corp. */ 3 4 #ifndef MBOXD_MSG_H 5 #define MBOXD_MSG_H 6 7 #include "common.h" 8 #include "mbox.h" 9 10 int transport_mbox_dispatch(struct mbox_context *context); 11 int init_mbox_dev(struct mbox_context *context); 12 void free_mbox_dev(struct mbox_context *context); 13 14 #endif /* MBOXD_MSG_H */ 15