For the iio_read_channel_raw and iio_read_channel_scale the kerneldoc comment refers to an argument called "channel", while the argument is called "chan" in the function signature. This leads to the following warnings from kerneldoc: Warning(include/linux/iio/consumer.h:71): No description found for parameter 'chan' Warning(include/linux/iio/consumer.h:71): Excess function parameter 'channel' description in 'iio_read_channel_raw' Warning(include/linux/iio/consumer.h:109): No description found for parameter 'chan' Warning(include/linux/iio/consumer.h:109): Excess function parameter 'channel' description in 'iio_read_channel_scale' This patch fixes the warnings by naming them consistently. Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx> --- include/linux/iio/consumer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h index 06ab4ec..27759ac3 100644 --- a/include/linux/iio/consumer.h +++ b/include/linux/iio/consumer.h @@ -67,7 +67,7 @@ void iio_channel_release_all(struct iio_channel *chan); * Note raw reads from iio channels are in adc counts and hence * scale will need to be applied if standard units required. */ -int iio_read_channel_raw(struct iio_channel *chan, +int iio_read_channel_raw(struct iio_channel *channel, int *val); /** @@ -90,7 +90,7 @@ int iio_get_channel_type(struct iio_channel *channel, * as IIO_VAL_INT_PLUS_MICRO telling us we have a value of val * + val2/1e6 */ -int iio_read_channel_scale(struct iio_channel *chan, int *val, +int iio_read_channel_scale(struct iio_channel *channel, int *val, int *val2); #endif -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html