diff options
author | Jassi Brar <jaswinder.singh@linaro.org> | 2014-06-12 21:01:19 +0400 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2014-10-08 09:09:41 +0400 |
commit | 2b6d83e2b8b7de82331a6a1dcd64b51020a6031c (patch) | |
tree | bad207a312a196de55c9d141bbfa542b029ca768 /drivers/mailbox/Makefile | |
parent | f2fc42b6ac31f4d808da7a9da460dd433a71e976 (diff) | |
download | linux-2b6d83e2b8b7de82331a6a1dcd64b51020a6031c.tar.xz |
mailbox: Introduce framework for mailbox
Introduce common framework for client/protocol drivers and
controller drivers of Inter-Processor-Communication (IPC).
Client driver developers should have a look at
include/linux/mailbox_client.h to understand the part of
the API exposed to client drivers.
Similarly controller driver developers should have a look
at include/linux/mailbox_controller.h
Reviewed-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox/Makefile')
-rw-r--r-- | drivers/mailbox/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mailbox/Makefile b/drivers/mailbox/Makefile index 6d184dbcaca8..94ed7cefb14d 100644 --- a/drivers/mailbox/Makefile +++ b/drivers/mailbox/Makefile @@ -1,3 +1,7 @@ +# Generic MAILBOX API + +obj-$(CONFIG_MAILBOX) += mailbox.o + obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o obj-$(CONFIG_OMAP2PLUS_MBOX) += omap-mailbox.o |