Skip to content

Commit cc8ad8f

Browse files
committed
Merge tag 'staging-5.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull IIO fixes from Greg KH: "Here are two small IIO driver fixes for 5.9-rc8 that resolve some reported issues: - driver name fixed in one driver - device name typo fixed Both have been in linux-next for a while with no reported problems" * tag 'staging-5.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: iio: adc: qcom-spmi-adc5: fix driver name iio: adc: ad7124: Fix typo in device name
2 parents 0bf0dfd + 52a0352 commit cc8ad8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

drivers/iio/adc/ad7124.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,12 @@ static const struct iio_chan_spec ad7124_channel_template = {
177177

178178
static struct ad7124_chip_info ad7124_chip_info_tbl[] = {
179179
[ID_AD7124_4] = {
180-
.name = "ad7127-4",
180+
.name = "ad7124-4",
181181
.chip_id = CHIPID_AD7124_4,
182182
.num_inputs = 8,
183183
},
184184
[ID_AD7124_8] = {
185-
.name = "ad7127-8",
185+
.name = "ad7124-8",
186186
.chip_id = CHIPID_AD7124_8,
187187
.num_inputs = 16,
188188
},

drivers/iio/adc/qcom-spmi-adc5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ static int adc5_probe(struct platform_device *pdev)
982982

983983
static struct platform_driver adc5_driver = {
984984
.driver = {
985-
.name = "qcom-spmi-adc5.c",
985+
.name = "qcom-spmi-adc5",
986986
.of_match_table = adc5_match_table,
987987
},
988988
.probe = adc5_probe,

0 commit comments

Comments
 (0)