Message ID | 1442854440-11972-1-git-send-email-vinod.koul@intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
On Mon, 2015-09-21 at 22:24 +0530, Vinod Koul wrote: > the symbol CONFIG_IDMA64 should rather be CONFIG_INTEL_IDMA64 to > conform to > rest of the intel dmaengine drivers. This was found after sorting the > entries and trying to place this odd one > > Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> > Signed-off-by: Vinod Koul <vinod.koul@intel.com> Since there are no users outside Intel for now we are quite flexible to change this. Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > --- > drivers/dma/Kconfig | 2 +- > drivers/dma/Makefile | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig > index b4584757dae0..5c931d45fdca 100644 > --- a/drivers/dma/Kconfig > +++ b/drivers/dma/Kconfig > @@ -229,7 +229,7 @@ config IMX_SDMA > Support the i.MX SDMA engine. This engine is integrated > into > Freescale i.MX25/31/35/51/53/6 chips. > > -config IDMA64 > +config INTEL_IDMA64 > tristate "Intel integrated DMA 64-bit support" > select DMA_ENGINE > select DMA_VIRTUAL_CHANNELS > diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile > index 7711a7180726..ef9c099bd2b6 100644 > --- a/drivers/dma/Makefile > +++ b/drivers/dma/Makefile > @@ -34,7 +34,7 @@ obj-$(CONFIG_HSU_DMA) += hsu/ > obj-$(CONFIG_IMG_MDC_DMA) += img-mdc-dma.o > obj-$(CONFIG_IMX_DMA) += imx-dma.o > obj-$(CONFIG_IMX_SDMA) += imx-sdma.o > -obj-$(CONFIG_IDMA64) += idma64.o > +obj-$(CONFIG_INTEL_IDMA64) += idma64.o > obj-$(CONFIG_INTEL_IOATDMA) += ioat/ > obj-$(CONFIG_INTEL_IOP_ADMA) += iop-adma.o > obj-$(CONFIG_INTEL_MIC_X100_DMA) += mic_x100_dma.o
On Mon, Sep 21, 2015 at 10:24:00PM +0530, Vinod Koul wrote: > the symbol CONFIG_IDMA64 should rather be CONFIG_INTEL_IDMA64 to conform to > rest of the intel dmaengine drivers. This was found after sorting the > entries and trying to place this odd one Applying now
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index b4584757dae0..5c931d45fdca 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -229,7 +229,7 @@ config IMX_SDMA Support the i.MX SDMA engine. This engine is integrated into Freescale i.MX25/31/35/51/53/6 chips. -config IDMA64 +config INTEL_IDMA64 tristate "Intel integrated DMA 64-bit support" select DMA_ENGINE select DMA_VIRTUAL_CHANNELS diff --git a/drivers/dma/Makefile b/drivers/dma/Makefile index 7711a7180726..ef9c099bd2b6 100644 --- a/drivers/dma/Makefile +++ b/drivers/dma/Makefile @@ -34,7 +34,7 @@ obj-$(CONFIG_HSU_DMA) += hsu/ obj-$(CONFIG_IMG_MDC_DMA) += img-mdc-dma.o obj-$(CONFIG_IMX_DMA) += imx-dma.o obj-$(CONFIG_IMX_SDMA) += imx-sdma.o -obj-$(CONFIG_IDMA64) += idma64.o +obj-$(CONFIG_INTEL_IDMA64) += idma64.o obj-$(CONFIG_INTEL_IOATDMA) += ioat/ obj-$(CONFIG_INTEL_IOP_ADMA) += iop-adma.o obj-$(CONFIG_INTEL_MIC_X100_DMA) += mic_x100_dma.o
the symbol CONFIG_IDMA64 should rather be CONFIG_INTEL_IDMA64 to conform to rest of the intel dmaengine drivers. This was found after sorting the entries and trying to place this odd one Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Vinod Koul <vinod.koul@intel.com> --- drivers/dma/Kconfig | 2 +- drivers/dma/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)