Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix !MCTP_HAVE_FILEIO compile failures #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion astlpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ struct mctp_binding_astlpc *mctp_astlpc_init_fileio(void)
struct mctp_binding_astlpc * __attribute__((const))
mctp_astlpc_init_fileio(void)
{
astlpc_prerr(astlpc, "Missing support for file IO");
mctp_prerr("Missing support for file IO");
return NULL;
}

Expand Down
24 changes: 24 additions & 0 deletions serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,30 @@ void mctp_serial_open_fd(struct mctp_binding_serial *serial, int fd)
{
serial->fd = fd;
}
#else
int mctp_serial_read(struct mctp_binding_serial *serial)
{
mctp_prerr("can't read from serial device: %m");
return -1;
}

int mctp_serial_get_fd(struct mctp_binding_serial *serial)
{
mctp_prerr("can't read from serial device: %m");
return -1;
}

int mctp_serial_open_path(struct mctp_binding_serial *serial,
const char *device)
{
mctp_prerr("can't read from serial device: %m");
return -1;
}

void mctp_serial_open_fd(struct mctp_binding_serial *serial, int fd)
{
mctp_prerr("can't read from serial device: %m");
}
#endif

void mctp_serial_set_tx_fn(struct mctp_binding_serial *serial,
Expand Down