Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3 -3
+2 -2
drivers/iio/adc/ad7124.c
··· 177 177 178 178 static struct ad7124_chip_info ad7124_chip_info_tbl[] = { 179 179 [ID_AD7124_4] = { 180 - .name = "ad7127-4", 180 + .name = "ad7124-4", 181 181 .chip_id = CHIPID_AD7124_4, 182 182 .num_inputs = 8, 183 183 }, 184 184 [ID_AD7124_8] = { 185 - .name = "ad7127-8", 185 + .name = "ad7124-8", 186 186 .chip_id = CHIPID_AD7124_8, 187 187 .num_inputs = 16, 188 188 },
+1 -1
drivers/iio/adc/qcom-spmi-adc5.c
··· 982 982 983 983 static struct platform_driver adc5_driver = { 984 984 .driver = { 985 - .name = "qcom-spmi-adc5.c", 985 + .name = "qcom-spmi-adc5", 986 986 .of_match_table = adc5_match_table, 987 987 }, 988 988 .probe = adc5_probe,