mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
iio: Add missing modifier names to core
some are documented, others are in iio_event_monitor.c which was recently moved from staging Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
23f93cde93
commit
4b8d80157e
@ -81,6 +81,14 @@ static const char * const iio_modifier_names[] = {
|
||||
[IIO_MOD_X] = "x",
|
||||
[IIO_MOD_Y] = "y",
|
||||
[IIO_MOD_Z] = "z",
|
||||
[IIO_MOD_X_AND_Y] = "x&y",
|
||||
[IIO_MOD_X_AND_Z] = "x&z",
|
||||
[IIO_MOD_Y_AND_Z] = "y&z",
|
||||
[IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
|
||||
[IIO_MOD_X_OR_Y] = "x|y",
|
||||
[IIO_MOD_X_OR_Z] = "x|z",
|
||||
[IIO_MOD_Y_OR_Z] = "y|z",
|
||||
[IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
|
||||
[IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
|
||||
[IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
|
||||
[IIO_MOD_LIGHT_BOTH] = "both",
|
||||
|
Loading…
Reference in New Issue
Block a user