From mboxrd@z Thu Jan 1 00:00:00 1970 From: tony@atomide.com (Tony Lindgren) Date: Tue, 20 Nov 2012 17:10:28 -0800 Subject: [PATCH v4 7/8] crypto: omap-sham: Add code to use dmaengine API In-Reply-To: <1353351301-6453-8-git-send-email-mgreer@animalcreek.com> References: <1353351301-6453-1-git-send-email-mgreer@animalcreek.com> <1353351301-6453-8-git-send-email-mgreer@animalcreek.com> Message-ID: <20121121011027.GT18567@atomide.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org * Mark A. Greer [121119 10:58]: > @@ -27,6 +29,10 @@ > #include > #include > #include > +#ifndef OMAP_SHAM_DMA_PRIVATE > +#include > +#include > +#endif > #include > #include > #include I think you should be able to drop the OMAP_SHAM_DMA_PRIVATE from the include after I'll post one more patch to move the omap private DMA header to linux/dma-mapping.h that we already have until the dmaengine conversion is completed. > @@ -37,8 +43,10 @@ > #include > #include > > +#ifdef OMAP_SHAM_DMA_PRIVATE > #include And then this can be dropped. > #include But this needs to go too, as we have that only for omap1 when ARM multiplatform is enabled for omap2+. The interrupt should be passed in platform_data. However, if there are some indirect dependencies for omap1, you can just put it into ifdef CONFIG_ARCH_OMAP1 for now. There's probably the same issue for the other series you posted. Regards, Tony