lkml.org 
[lkml]   [2022]   [Nov]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v3 1/3] iio: add struct declarations for iio types
Date
Add structs for iio type arrays such as IIO_AVAIL_LIST which can be used
instead of int arrays.

Signed-off-by: Gerald Loacker <gerald.loacker@wolfvision.net>
---
include/linux/iio/iio.h | 15 +++++++++++++++
1 file changed, 15 insertions(+)

diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
index f0ec8a5e5a7a..eaf6727445a6 100644
--- a/include/linux/iio/iio.h
+++ b/include/linux/iio/iio.h
@@ -383,6 +383,21 @@ s64 iio_get_time_ns(const struct iio_dev *indio_dev);

struct iio_trigger; /* forward declaration */

+struct iio_val_int_plus_micro {
+ int val_int;
+ int val_micro;
+};
+
+struct iio_val_int_plus_nano {
+ int val_int;
+ int val_nano;
+};
+
+struct iio_val_int_plus_micro_db {
+ int val_int;
+ int val_micro_db;
+};
+
/**
* struct iio_info - constant information about device
* @event_attrs: event control attributes
--
2.37.2
\
 
 \ /
  Last update: 2022-11-25 09:36    [W:0.124 / U:1.256 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site