aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-06-13 21:36:34 +0100
committerMark Brown <broonie@linaro.org>2014-06-13 21:43:13 +0100
commit087e5634f97076d629a8a03d6eda779bffced3cb (patch)
tree2926c353090d632aa76d545e547c04b0cbc4a516
parent779e3fad6a3f5e2f774b0bfdc07f1f8a208989ec (diff)
mailbox: Prototype mbox_client_peek_data()
This is an interface intended for client drivers and exported but it is not prototyped in the headers so can't be used. Add a prototype. Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--include/linux/mailbox_client.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mailbox_client.h b/include/linux/mailbox_client.h
index 53eb0784261b..cbfcf8478ca9 100644
--- a/include/linux/mailbox_client.h
+++ b/include/linux/mailbox_client.h
@@ -40,6 +40,7 @@ struct mbox_client {
struct mbox_chan *mbox_request_channel(const struct mbox_client *cl);
int mbox_send_message(struct mbox_chan *chan, void *mssg);
void mbox_client_txdone(struct mbox_chan *chan, int r);
+bool mbox_client_peek_data(struct mbox_chan *chan);
void mbox_free_channel(struct mbox_chan *chan);
#endif /* __MAILBOX_CLIENT_H */