2nd set of IIO fixes for the 5.9 cycle.
One of these fixes a regresison introduced this cycle, but if I am too late sending this request, it can be queued up for the merge window. ad7124: fix typo in device name exposed through sysfs. qcom-spmi-adc: fix stray .c in driver name field. -----BEGIN PGP SIGNATURE----- iQJFBAABCAAvFiEEbilms4eEBlKRJoGxVIU0mcT0FogFAl9p7+kRHGppYzIzQGtl cm5lbC5vcmcACgkQVIU0mcT0FogZNhAAvZUoP01buMN19LVLHgnCFIqtDv5oIL6L jISKluTLsQmAaqXDwgyuJa4nBJRn9hl8OyZc1/VIHwlrba0LdCNWRgPM6DKBKHNj 3hQAS6bzIvwf7yOpiWfbLl1AgJ40uPV+WtRDnr8e6ex6IhpH8aBg+ChulpMNJ2lu RGVYY87Q17HCg4wnDqjT+p5421Z5oiRwWZm7r1PjvR0SjxFA+41O28sgrcnTR2qi bkXHc3HwNY6IDxv3hOHWLKnNou9+zpQx61SDEJrPFdTR57m8q90y/ZVVkES4YNLs AFnFlENfAjvLj53Uzfe7kbXszKuQUpO2oUWuq+FBGLx3w/qI3HvOAecl2El4iE88 Sf7Me11nIL3bonTDIS9B7s7kuwSuQrr+tTJmEgclvVgQeB5g4+wQ1r9mPfn7MZhk FHQ7x8+jDJA4t5pMOdESr1fzNfuBkUcVEpR3VQ2pP0ejx84PjqBQsVaHov/X1Sjq qpjgnsE74cLCvijCYKFdoTLZGuhbPaeNrKqLIg1nJOjr89Qxbe83UcAoxGOgS40Q OePNuRNqH5b/tTiH2T4TY2H9WtijKrvE15CgGZFX9m78qdWpsdLoTLLEk1lczZQu O2Q9BZ0wD6Qzrm/EM6HsGsJa2XfOrGzeUGi0+li8eFZ5qVSiLMlsmRHtHIPPprE8 n9AxWXHjxAs= =SdOQ -----END PGP SIGNATURE----- Merge tag 'iio-fixes-for-5.9b-take2' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-linus Jonathan writes: 2nd set of IIO fixes for the 5.9 cycle. One of these fixes a regresison introduced this cycle, but if I am too late sending this request, it can be queued up for the merge window. ad7124: fix typo in device name exposed through sysfs. qcom-spmi-adc: fix stray .c in driver name field. * tag 'iio-fixes-for-5.9b-take2' of https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio: iio: adc: qcom-spmi-adc5: fix driver name iio: adc: ad7124: Fix typo in device name
This commit is contained in:
commit
52a035235e
|
@ -177,12 +177,12 @@ static const struct iio_chan_spec ad7124_channel_template = {
|
|||
|
||||
static struct ad7124_chip_info ad7124_chip_info_tbl[] = {
|
||||
[ID_AD7124_4] = {
|
||||
.name = "ad7127-4",
|
||||
.name = "ad7124-4",
|
||||
.chip_id = CHIPID_AD7124_4,
|
||||
.num_inputs = 8,
|
||||
},
|
||||
[ID_AD7124_8] = {
|
||||
.name = "ad7127-8",
|
||||
.name = "ad7124-8",
|
||||
.chip_id = CHIPID_AD7124_8,
|
||||
.num_inputs = 16,
|
||||
},
|
||||
|
|
|
@ -982,7 +982,7 @@ static int adc5_probe(struct platform_device *pdev)
|
|||
|
||||
static struct platform_driver adc5_driver = {
|
||||
.driver = {
|
||||
.name = "qcom-spmi-adc5.c",
|
||||
.name = "qcom-spmi-adc5",
|
||||
.of_match_table = adc5_match_table,
|
||||
},
|
||||
.probe = adc5_probe,
|
||||
|
|
Loading…
Reference in New Issue