diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-22 08:36:07 +0900 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2014-11-03 11:54:50 -0500 |
commit | 70c036347fe6675dcd87fd9c2f3159f90233a0ed (patch) | |
tree | c2208e2a547994dd444eddc0a1fabf12212d7270 /Documentation/mailbox.txt | |
parent | f353d71f75394e518b4d939aea2030d8e239dd41 (diff) |
Documentation: Fix a typo in mailbox.txt
This patch fix a typo in Documentation/mailbox.txt
"bool async" is defined in struct demo_client.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/mailbox.txt')
-rw-r--r-- | Documentation/mailbox.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/mailbox.txt b/Documentation/mailbox.txt index 60f43ff629aa..1092ad9578da 100644 --- a/Documentation/mailbox.txt +++ b/Documentation/mailbox.txt @@ -53,7 +53,7 @@ static void message_from_remote(struct mbox_client *cl, void *mssg) { struct demo_client *dc = container_of(mbox_client, struct demo_client, cl); - if (dc->aysnc) { + if (dc->async) { if (is_an_ack(mssg)) { /* An ACK to our last sample sent */ return; /* Or do something else here */ |