Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753638AbaJ0OqU (ORCPT ); Mon, 27 Oct 2014 10:46:20 -0400 Received: from mail-qg0-f41.google.com ([209.85.192.41]:55508 "EHLO mail-qg0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752920AbaJ0OqS (ORCPT ); Mon, 27 Oct 2014 10:46:18 -0400 MIME-Version: 1.0 In-Reply-To: <1413534398-22645-2-git-send-email-alexandre.belloni@free-electrons.com> References: <1413534398-22645-1-git-send-email-alexandre.belloni@free-electrons.com> <1413534398-22645-2-git-send-email-alexandre.belloni@free-electrons.com> Date: Mon, 27 Oct 2014 15:46:17 +0100 Message-ID: Subject: Re: [PATCHv2 1/3] mmc: atmel-mci: move mache header to platform_data From: Ulf Hansson To: Alexandre Belloni Cc: Nicolas Ferre , Chris Ball , Hans-Christian Egtvedt , Jean-Christophe Plagniol-Villard , Haavard Skinnemoen , Ludovic Desroches , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , linux-mmc Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 17 October 2014 10:26, Alexandre Belloni wrote: > Move the mach header that can come either from arm/mach-at91 or avr32 to > platform_data to be able to switch the AT91 platforms to multiplatform. > > Signed-off-by: Alexandre Belloni Thanks! Applied for next! Kind regards Uffe > --- > drivers/mmc/host/atmel-mci.c | 2 +- > include/linux/platform_data/mmc-atmel-mci.h | 22 ++++++++++++++++++++++ > 2 files changed, 23 insertions(+), 1 deletion(-) > create mode 100644 include/linux/platform_data/mmc-atmel-mci.h > > diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c > index bb585d940901..b1231835b031 100644 > --- a/drivers/mmc/host/atmel-mci.c > +++ b/drivers/mmc/host/atmel-mci.c > @@ -29,11 +29,11 @@ > #include > #include > #include > +#include > > #include > #include > > -#include > #include > #include > > diff --git a/include/linux/platform_data/mmc-atmel-mci.h b/include/linux/platform_data/mmc-atmel-mci.h > new file mode 100644 > index 000000000000..ebe7ae4f72e4 > --- /dev/null > +++ b/include/linux/platform_data/mmc-atmel-mci.h > @@ -0,0 +1,22 @@ > +#ifndef __MMC_ATMEL_MCI_H > +#define __MMC_ATMEL_MCI_H > + > +#include > +#include > + > +/** > + * struct mci_dma_data - DMA data for MCI interface > + */ > +struct mci_dma_data { > +#ifdef CONFIG_ARM > + struct at_dma_slave sdata; > +#else > + struct dw_dma_slave sdata; > +#endif > +}; > + > +/* accessor macros */ > +#define slave_data_ptr(s) (&(s)->sdata) > +#define find_slave_dev(s) ((s)->sdata.dma_dev) > + > +#endif /* __MMC_ATMEL_MCI_H */ > -- > 1.9.1 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/