|
@@ -19,12 +19,6 @@
|
|
|
* Currently assumes nano seconds.
|
|
|
*/
|
|
|
|
|
|
-enum iio_data_type {
|
|
|
- IIO_RAW,
|
|
|
- IIO_PROCESSED,
|
|
|
-};
|
|
|
-
|
|
|
-/* Could add the raw attributes as well - allowing buffer only devices */
|
|
|
enum iio_chan_info_enum {
|
|
|
IIO_CHAN_INFO_RAW = 0,
|
|
|
IIO_CHAN_INFO_PROCESSED,
|
|
@@ -146,8 +140,6 @@ struct iio_chan_spec_ext_info {
|
|
|
* correspond to the first name that the channel is referred
|
|
|
* to by in the datasheet (e.g. IND), or the nearest
|
|
|
* possible compound name (e.g. IND-INC).
|
|
|
- * @processed_val: Flag to specify the data access attribute should be
|
|
|
- * *_input rather than *_raw.
|
|
|
* @modified: Does a modifier apply to this channel. What these are
|
|
|
* depends on the channel type. Modifier is set in
|
|
|
* channel2. Examples are IIO_MOD_X for axial sensors about
|
|
@@ -176,7 +168,6 @@ struct iio_chan_spec {
|
|
|
const struct iio_chan_spec_ext_info *ext_info;
|
|
|
const char *extend_name;
|
|
|
const char *datasheet_name;
|
|
|
- unsigned processed_val:1;
|
|
|
unsigned modified:1;
|
|
|
unsigned indexed:1;
|
|
|
unsigned output:1;
|