Message ID | 20210324141757.24710-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | [v2,1/1] dmaengine: dw: Make it dependent to HAS_IOMEM | expand |
On 24-03-21, 16:17, Andy Shevchenko wrote: > Some architectures do not provide devm_*() APIs. Hence make the driver > dependent on HAVE_IOMEM. > > Fixes: dbde5c2934d1 ("dw_dmac: use devm_* functions to simplify code") > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > --- > v2: used proper option (Serge) > drivers/dma/dw/Kconfig | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/dma/dw/Kconfig b/drivers/dma/dw/Kconfig > index e5162690de8f..db25f9b7778c 100644 > --- a/drivers/dma/dw/Kconfig > +++ b/drivers/dma/dw/Kconfig > @@ -10,6 +10,7 @@ config DW_DMAC_CORE > > config DW_DMAC > tristate "Synopsys DesignWare AHB DMA platform driver" > + depends on HAS_IOMEM > select DW_DMAC_CORE > help > Support the Synopsys DesignWare AHB DMA controller. This > @@ -18,6 +19,7 @@ config DW_DMAC > config DW_DMAC_PCI > tristate "Synopsys DesignWare AHB DMA PCI driver" > depends on PCI > + depends on HAS_IOMEM > select DW_DMAC_CORE > help > Support the Synopsys DesignWare AHB DMA controller on the Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
On 24-03-21, 16:17, Andy Shevchenko wrote: > Some architectures do not provide devm_*() APIs. Hence make the driver > dependent on HAVE_IOMEM. Applied, thanks
diff --git a/drivers/dma/dw/Kconfig b/drivers/dma/dw/Kconfig index e5162690de8f..db25f9b7778c 100644 --- a/drivers/dma/dw/Kconfig +++ b/drivers/dma/dw/Kconfig @@ -10,6 +10,7 @@ config DW_DMAC_CORE config DW_DMAC tristate "Synopsys DesignWare AHB DMA platform driver" + depends on HAS_IOMEM select DW_DMAC_CORE help Support the Synopsys DesignWare AHB DMA controller. This @@ -18,6 +19,7 @@ config DW_DMAC config DW_DMAC_PCI tristate "Synopsys DesignWare AHB DMA PCI driver" depends on PCI + depends on HAS_IOMEM select DW_DMAC_CORE help Support the Synopsys DesignWare AHB DMA controller on the
Some architectures do not provide devm_*() APIs. Hence make the driver dependent on HAVE_IOMEM. Fixes: dbde5c2934d1 ("dw_dmac: use devm_* functions to simplify code") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- v2: used proper option (Serge) drivers/dma/dw/Kconfig | 2 ++ 1 file changed, 2 insertions(+)