diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-21 19:36:07 -0400 |
---|---|---|
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) | |||
53 | { | 53 | { |
54 | struct demo_client *dc = container_of(mbox_client, | 54 | struct demo_client *dc = container_of(mbox_client, |
55 | struct demo_client, cl); | 55 | struct demo_client, cl); |
56 | if (dc->aysnc) { | 56 | if (dc->async) { |
57 | if (is_an_ack(mssg)) { | 57 | if (is_an_ack(mssg)) { |
58 | /* An ACK to our last sample sent */ | 58 | /* An ACK to our last sample sent */ |
59 | return; /* Or do something else here */ | 59 | return; /* Or do something else here */ |