These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / Documentation / mailbox.txt
index 1092ad9..7ed371c 100644 (file)
@@ -51,8 +51,7 @@ struct demo_client {
  */
 static void message_from_remote(struct mbox_client *cl, void *mssg)
 {
-       struct demo_client *dc = container_of(mbox_client,
-                                               struct demo_client, cl);
+       struct demo_client *dc = container_of(cl, struct demo_client, cl);
        if (dc->async) {
                if (is_an_ack(mssg)) {
                        /* An ACK to our last sample sent */
@@ -68,8 +67,7 @@ static void message_from_remote(struct mbox_client *cl, void *mssg)
 
 static void sample_sent(struct mbox_client *cl, void *mssg, int r)
 {
-       struct demo_client *dc = container_of(mbox_client,
-                                               struct demo_client, cl);
+       struct demo_client *dc = container_of(cl, struct demo_client, cl);
        complete(&dc->c);
 }