diff options
author | 2024-11-07 18:52:33 +0000 | |
---|---|---|
committer | 2024-11-09 10:42:13 +0000 | |
commit | 20fd1383cd616d61b2a79967da1221dc6cfb8430 (patch) | |
tree | efa9e41b8e719aae8b78302c52fecf494d8e24c1 | |
parent | docs: iio: ad7380: add adaq4370-4 and adaq4380-4 (diff) | |
download | wireguard-linux-20fd1383cd616d61b2a79967da1221dc6cfb8430.tar.xz wireguard-linux-20fd1383cd616d61b2a79967da1221dc6cfb8430.zip |
iio: Move __private marking before struct element priv in struct iio_dev
This is to avoid tripping up kernel-doc which filters it out before
but not after the name.
Note the formatting is less than ideal as a result so we may revisit
in future.
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
-rw-r--r-- | include/linux/iio/iio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index 59c58f455311..ae65890d4567 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h @@ -624,7 +624,7 @@ struct iio_dev { const struct iio_info *info; const struct iio_buffer_setup_ops *setup_ops; - void *priv __private; + void *__private priv; }; int iio_device_id(struct iio_dev *indio_dev); |