forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'local/ib-iio-scmi-5.12-rc2-take3' into …
…togreg Updated to use devm_iio_kfifo_buffer_setup() in place of now removed devm_iio_kfifo_allocate() Take3 branch because first 2 versions including wrong version of patch.
- Loading branch information
Showing
7 changed files
with
704 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8691,6 +8691,12 @@ S: Maintained | |
F: Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.txt | ||
F: drivers/iio/multiplexer/iio-mux.c | ||
|
||
IIO SCMI BASED DRIVER | ||
M: Jyoti Bhayana <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/iio/common/scmi_sensors/scmi_iio.c | ||
|
||
IIO SUBSYSTEM AND DRIVERS | ||
M: Jonathan Cameron <[email protected]> | ||
R: Lars-Peter Clausen <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# IIO over SCMI | ||
# | ||
# When adding new entries keep the list in alphabetical order | ||
|
||
menu "IIO SCMI Sensors" | ||
|
||
config IIO_SCMI | ||
tristate "IIO SCMI" | ||
depends on ARM_SCMI_PROTOCOL | ||
select IIO_BUFFER | ||
select IIO_KFIFO_BUF | ||
help | ||
Say yes here to build support for IIO SCMI Driver. | ||
This provides ARM SCMI Protocol based IIO device. | ||
This driver provides support for accelerometer and gyroscope | ||
sensors available on SCMI based platforms. | ||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SPDX - License - Identifier : GPL - 2.0 - only | ||
# | ||
# Makefile for the IIO over SCMI | ||
# | ||
obj-$(CONFIG_IIO_SCMI) += scmi_iio.o |
Oops, something went wrong.