diff options
author | Kenneth Heitke <kheitke@codeaurora.org> | 2014-02-12 13:44:22 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-15 11:55:28 -0800 |
commit | 5a86bf343976b9c8ab2f240bc866451fa67e5573 (patch) | |
tree | 26868658105a10869ca43d9eaf72098674eeb458 /drivers/spmi/Makefile | |
parent | a2a720e15f59be60c7ae1c58b5b4ac1003dd5078 (diff) |
spmi: Linux driver framework for SPMI
System Power Management Interface (SPMI) is a specification
developed by the MIPI (Mobile Industry Process Interface) Alliance
optimized for the real time control of Power Management ICs (PMIC).
SPMI is a two-wire serial interface that supports up to 4 master
devices and up to 16 logical slaves.
The framework supports message APIs, multiple busses (1 controller
per bus) and multiple clients/slave devices per controller.
Signed-off-by: Kenneth Heitke <kheitke@codeaurora.org>
Signed-off-by: Michael Bohan <mbohan@codeaurora.org>
Signed-off-by: Josh Cartwright <joshc@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/spmi/Makefile')
-rw-r--r-- | drivers/spmi/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/spmi/Makefile b/drivers/spmi/Makefile new file mode 100644 index 000000000000..1de1acd6a587 --- /dev/null +++ b/drivers/spmi/Makefile @@ -0,0 +1,4 @@ +# +# Makefile for kernel SPMI framework. +# +obj-$(CONFIG_SPMI) += spmi.o |