Skip to content

Commit da569ed

Browse files
justephnunojsa
authored andcommitted
iio: adc: ad7380: add missing trailing commas
Add missing trailing commas in iio_scan_type structures Signed-off-by: Julien Stephan <jstephan@baylibre.com> Reviewed-by: David Lechner <dlechner@baylibre.com> Link: https://patch.msgid.link/20240731-ad7380-add-single-ended-chips-v2-3-cd63bf05744c@baylibre.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
1 parent 1c4d4c7 commit da569ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/iio/adc/ad7380.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ static const struct iio_scan_type ad7380_scan_type_14[] = {
9797
.sign = 's',
9898
.realbits = 14,
9999
.storagebits = 16,
100-
.endianness = IIO_CPU
100+
.endianness = IIO_CPU,
101101
},
102102
[AD7380_SCAN_TYPE_RESOLUTION_BOOST] = {
103103
.sign = 's',
104104
.realbits = 16,
105105
.storagebits = 16,
106-
.endianness = IIO_CPU
106+
.endianness = IIO_CPU,
107107
},
108108
};
109109

@@ -113,13 +113,13 @@ static const struct iio_scan_type ad7380_scan_type_16[] = {
113113
.sign = 's',
114114
.realbits = 16,
115115
.storagebits = 16,
116-
.endianness = IIO_CPU
116+
.endianness = IIO_CPU,
117117
},
118118
[AD7380_SCAN_TYPE_RESOLUTION_BOOST] = {
119119
.sign = 's',
120120
.realbits = 18,
121121
.storagebits = 32,
122-
.endianness = IIO_CPU
122+
.endianness = IIO_CPU,
123123
},
124124
};
125125

0 commit comments

Comments
 (0)