Skip to content

Commit

Permalink
Merge branch 'topic/iio' of https://git.kernel.org/pub/scm/linux/kern…
Browse files Browse the repository at this point in the history
…el/git/broonie/sound into asoc-st-dfsdm
  • Loading branch information
Mark Brown committed Jan 16, 2018
2 parents 2353758 + 1175d0f commit d84b4c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 20 deletions.
17 changes: 3 additions & 14 deletions drivers/iio/adc/stm32-dfsdm-adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1087,29 +1087,18 @@ static int stm32_dfsdm_adc_probe(struct platform_device *pdev)
struct device_node *np = dev->of_node;
const struct stm32_dfsdm_dev_data *dev_data;
struct iio_dev *iio;
const struct of_device_id *of_id;
char *name;
int ret, irq, val;

of_id = of_match_node(stm32_dfsdm_adc_match, np);
if (!of_id->data) {
dev_err(&pdev->dev, "Data associated to device is missing\n");
return -EINVAL;
}

dev_data = (const struct stm32_dfsdm_dev_data *)of_id->data;

dev_data = of_device_get_match_data(dev);
iio = devm_iio_device_alloc(dev, sizeof(*adc));
if (IS_ERR(iio)) {
if (!iio) {
dev_err(dev, "%s: Failed to allocate IIO\n", __func__);
return PTR_ERR(iio);
return -ENOMEM;
}

adc = iio_priv(iio);
if (IS_ERR(adc)) {
dev_err(dev, "%s: Failed to allocate ADC\n", __func__);
return PTR_ERR(adc);
}
adc->dfsdm = dev_get_drvdata(dev->parent);

iio->dev.parent = dev;
Expand Down
7 changes: 1 addition & 6 deletions drivers/iio/adc/stm32-dfsdm-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,8 @@ static int stm32_dfsdm_probe(struct platform_device *pdev)

priv->pdev = pdev;

of_id = of_match_node(stm32_dfsdm_of_match, pdev->dev.of_node);
if (!of_id->data) {
dev_err(&pdev->dev, "Data associated to device is missing\n");
return -EINVAL;
}
dev_data = of_device_get_match_data(&pdev->dev);

dev_data = (const struct stm32_dfsdm_dev_data *)of_id->data;
dfsdm = &priv->dfsdm;
dfsdm->fl_list = devm_kcalloc(&pdev->dev, dev_data->num_filters,
sizeof(*dfsdm->fl_list), GFP_KERNEL);
Expand Down

0 comments on commit d84b4c7

Please sign in to comment.