> +static int amba_dma_configure(struct device *dev)
> +{
> +     return dma_common_configure(dev);
> +}

So it turns out we only end with two callers of dma_common_configure
after this series.  Based ont hat I'm tempted with the suggestion
from Robin to just have amba call platform_dma_configure, and move
the code from dma_common_configure to platform_dma_configure.

> +int dma_configure(struct device *dev)
> +{
> +     if (dev->bus->dma_configure)
> +             return dev->bus->dma_configure(dev);
> +
> +     return 0;
> +}
>  void dma_deconfigure(struct device *dev)

As grep pointed out this wants a blank line after the function, and while
in nitpicking mode I'd suggest to remove the blank line above the return
statement while at it.

> diff --git a/drivers/gpu/host1x/bus.c b/drivers/gpu/host1x/bus.c
> index 88a3558..fa9896d 100644
> --- a/drivers/gpu/host1x/bus.c
> +++ b/drivers/gpu/host1x/bus.c
> @@ -314,6 +314,14 @@ static int host1x_device_match(struct device *dev, 
> struct device_driver *drv)
>       return strcmp(dev_name(dev), drv->name) == 0;
>  }
>  
> +static int host1x_dma_configure(struct device *dev)
> +{
> +     if (dev->of_node)
> +             return of_dma_configure(dev, dev->of_node);
> +
> +     return 0;

Same here.

> + */
> +static int pci_dma_configure(struct device *dev)
> +{
> +     struct device *bridge;
> +     enum dev_dma_attr attr;
> +     int ret = 0;
> +
> +     bridge = pci_get_host_bridge_device(to_pci_dev(dev));
> +
> +     if (IS_ENABLED(CONFIG_OF) && bridge->parent &&
> +         bridge->parent->of_node) {
> +             ret = of_dma_configure(dev, bridge->parent->of_node);
> +     } else if (has_acpi_companion(bridge)) {
> +             attr = acpi_get_dma_attr(to_acpi_device_node(bridge->fwnode));
> +             if (attr != DEV_DMA_NOT_SUPPORTED)
> +                     ret = acpi_dma_configure(dev, attr);
> +     }

The attr declaration can be moved into the inner scope here.

> +     pci_put_host_bridge_device(bridge);
> +
> +     return ret;

Drop the blank line after the return, please.

Reply via email to