aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2018-01-16 10:21:19 -0500
committerMark Brown <broonie@kernel.org>2018-01-16 10:21:19 -0500
commitd84b4c7c706f4e226b038d120d6832d89bc59ac7 (patch)
treea24ea7a4fcb64148a99597e987f33b91d1422939
parent2353758bc2d427809f5feb15f046ded91c60afef (diff)
parent1175d0f9f4031ce02845f6f843f58a9caaee7817 (diff)
Merge branch 'topic/iio' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-st-dfsdm
-rw-r--r--drivers/iio/adc/stm32-dfsdm-adc.c17
-rw-r--r--drivers/iio/adc/stm32-dfsdm-core.c7
2 files changed, 4 insertions, 20 deletions
diff --git a/drivers/iio/adc/stm32-dfsdm-adc.c b/drivers/iio/adc/stm32-dfsdm-adc.c
index e628d04d5c77..daa026d6a94f 100644
--- a/drivers/iio/adc/stm32-dfsdm-adc.c
+++ b/drivers/iio/adc/stm32-dfsdm-adc.c
@@ -1087,29 +1087,18 @@ static int stm32_dfsdm_adc_probe(struct platform_device *pdev)
1087 struct device_node *np = dev->of_node; 1087 struct device_node *np = dev->of_node;
1088 const struct stm32_dfsdm_dev_data *dev_data; 1088 const struct stm32_dfsdm_dev_data *dev_data;
1089 struct iio_dev *iio; 1089 struct iio_dev *iio;
1090 const struct of_device_id *of_id;
1091 char *name; 1090 char *name;
1092 int ret, irq, val; 1091 int ret, irq, val;
1093 1092
1094 of_id = of_match_node(stm32_dfsdm_adc_match, np);
1095 if (!of_id->data) {
1096 dev_err(&pdev->dev, "Data associated to device is missing\n");
1097 return -EINVAL;
1098 }
1099
1100 dev_data = (const struct stm32_dfsdm_dev_data *)of_id->data;
1101 1093
1094 dev_data = of_device_get_match_data(dev);
1102 iio = devm_iio_device_alloc(dev, sizeof(*adc)); 1095 iio = devm_iio_device_alloc(dev, sizeof(*adc));
1103 if (IS_ERR(iio)) { 1096 if (!iio) {
1104 dev_err(dev, "%s: Failed to allocate IIO\n", __func__); 1097 dev_err(dev, "%s: Failed to allocate IIO\n", __func__);
1105 return PTR_ERR(iio); 1098 return -ENOMEM;
1106 } 1099 }
1107 1100
1108 adc = iio_priv(iio); 1101 adc = iio_priv(iio);
1109 if (IS_ERR(adc)) {
1110 dev_err(dev, "%s: Failed to allocate ADC\n", __func__);
1111 return PTR_ERR(adc);
1112 }
1113 adc->dfsdm = dev_get_drvdata(dev->parent); 1102 adc->dfsdm = dev_get_drvdata(dev->parent);
1114 1103
1115 iio->dev.parent = dev; 1104 iio->dev.parent = dev;
diff --git a/drivers/iio/adc/stm32-dfsdm-core.c b/drivers/iio/adc/stm32-dfsdm-core.c
index 6cd655f8239b..84277bcc465f 100644
--- a/drivers/iio/adc/stm32-dfsdm-core.c
+++ b/drivers/iio/adc/stm32-dfsdm-core.c
@@ -253,13 +253,8 @@ static int stm32_dfsdm_probe(struct platform_device *pdev)
253 253
254 priv->pdev = pdev; 254 priv->pdev = pdev;
255 255
256 of_id = of_match_node(stm32_dfsdm_of_match, pdev->dev.of_node); 256 dev_data = of_device_get_match_data(&pdev->dev);
257 if (!of_id->data) {
258 dev_err(&pdev->dev, "Data associated to device is missing\n");
259 return -EINVAL;
260 }
261 257
262 dev_data = (const struct stm32_dfsdm_dev_data *)of_id->data;
263 dfsdm = &priv->dfsdm; 258 dfsdm = &priv->dfsdm;
264 dfsdm->fl_list = devm_kcalloc(&pdev->dev, dev_data->num_filters, 259 dfsdm->fl_list = devm_kcalloc(&pdev->dev, dev_data->num_filters,
265 sizeof(*dfsdm->fl_list), GFP_KERNEL); 260 sizeof(*dfsdm->fl_list), GFP_KERNEL);