diff options
author | Nishanth Menon <nm@ti.com> | 2015-09-17 15:42:40 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-10-22 14:18:39 -0400 |
commit | 3df0b8b4dad19c764c1cc81d283bf903f4ab9e69 (patch) | |
tree | 78034d1d88f1b2888b43427bc059f1794dbd9540 /drivers/remoteproc/Makefile | |
parent | ddf56bc7e3ef43920b4a23320e70c1998f1ef843 (diff) |
remoteproc: Introduce a sandbox dummy driver
Introduce a dummy driver for sandbox that allows us to verify basic
functionality. This is not meant to do anything functional - but is
more or less meant as a framework plumbing debug helper.
The sandbox remoteproc driver maintains absolutey no states and is a
simple driver which just is filled with empty hooks. Idea being to give
an approximate idea to implement own remoteproc driver using this as a
template.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/remoteproc/Makefile')
-rw-r--r-- | drivers/remoteproc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/remoteproc/Makefile b/drivers/remoteproc/Makefile index 14c27929b6..720aa6e647 100644 --- a/drivers/remoteproc/Makefile +++ b/drivers/remoteproc/Makefile @@ -5,3 +5,6 @@ # obj-$(CONFIG_REMOTEPROC) += rproc-uclass.o + +# Remote proc drivers - Please keep this list alphabetically sorted. +obj-$(CONFIG_REMOTEPROC_SANDBOX) += sandbox_testproc.o |