From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4F84890A.30500@ti.com> Date: Tue, 10 Apr 2012 14:24:58 -0500 From: Jon Hunter MIME-Version: 1.0 To: Afzal Mohammed Subject: Re: [PATCH v3 4/9] ARM: OMAP2+: gpmc-nand: populate gpmc configs References: <6c120ab77d0900a6f977246bc58fb37c62280371.1333640054.git.afzal@ti.com> In-Reply-To: <6c120ab77d0900a6f977246bc58fb37c62280371.1333640054.git.afzal@ti.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Cc: khilman@ti.com, nm@ti.com, linux@arm.linux.org.uk, sameo@linux.intel.com, tony@atomide.com, artem.bityutskiy@linux.intel.com, linux-kernel@vger.kernel.org, dbaryshkov@gmail.com, vimal.newwork@gmail.com, grinberg@compulab.co.il, mike@compulab.co.il, linux-mtd@lists.infradead.org, linux-omap@vger.kernel.org, dwmw2@infradead.org, linux-arm-kernel@lists.infradead.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hi Afzal, On 04/05/2012 10:46 AM, Afzal Mohammed wrote: > Currently gpmc is configured in platform for nand. > As configuring gpmc has been moved to gpmc driver, > populate details needed for the driver to configure > gpmc. gpmc driver would configure based on this > information. > > Signed-off-by: Afzal Mohammed > --- > arch/arm/mach-omap2/gpmc-nand.c | 97 ++++++++++++++------------------ > arch/arm/plat-omap/include/plat/nand.h | 8 ++- > 2 files changed, 48 insertions(+), 57 deletions(-) > > diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c > index 386dec8..85de31f 100644 > --- a/arch/arm/mach-omap2/gpmc-nand.c > +++ b/arch/arm/mach-omap2/gpmc-nand.c > @@ -21,24 +21,38 @@ > #include > #include > > -static struct resource gpmc_nand_resource = { > - .flags = IORESOURCE_MEM, > + > +#define GPMC_NAND_CONFIG_NUM 4 Where does 4 come from? Jon