From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <50F458D2.6070000@infradead.org> Date: Mon, 14 Jan 2013 11:13:22 -0800 From: Randy Dunlap MIME-Version: 1.0 To: Robert Jarzmik Subject: Re: linux-next: Tree for Jan 14 (mtd) References: <20130114154649.cb077b499876da60463fb304@canb.auug.org.au> <50F43197.6010308@infradead.org> <874nija8ry.fsf@free.fr> In-Reply-To: <874nija8ry.fsf@free.fr> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Stephen Rothwell , linux-next@vger.kernel.org, linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 01/14/13 11:01, Robert Jarzmik wrote: > Randy Dunlap writes: >> ERROR: "byte_rev_table" [drivers/mtd/devices/docg3.ko] undefined! > > Thanks for the report. I have a trivial patch attached. Should it go through > Artem's tree or do you want to take it directly ? Acked-by: Randy Dunlap I suppose that it should go thru Artem's tree. Thanks. > Cheers. > > -- > Robert > > ---8>--- > > From 771d13b0094421b98310171d8794f2a793ec5d4d Mon Sep 17 00:00:00 2001 > From: Robert Jarzmik > Date: Mon, 9 Apr 2012 13:19:08 +0200 > Subject: [PATCH] mtd: docg3 fix missing bitreverse lib > > Fix missing dependency which can cause a build error such > as: ERROR: "byte_rev_table" [drivers/mtd/devices/docg3.ko] > undefined! > > Reported-by: Randy Dunlap > Signed-off-by: Robert Jarzmik > --- > drivers/mtd/devices/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mtd/devices/Kconfig b/drivers/mtd/devices/Kconfig > index 27f80cd..46dcb54 100644 > --- a/drivers/mtd/devices/Kconfig > +++ b/drivers/mtd/devices/Kconfig > @@ -272,6 +272,7 @@ config MTD_DOCG3 > tristate "M-Systems Disk-On-Chip G3" > select BCH > select BCH_CONST_PARAMS > + select BITREVERSE > ---help--- > This provides an MTD device driver for the M-Systems DiskOnChip > G3 devices. > -- ~Randy