From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753126AbdK0U12 (ORCPT ); Mon, 27 Nov 2017 15:27:28 -0500 Received: from www17.your-server.de ([213.133.104.17]:33122 "EHLO www17.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751953AbdK0U11 (ORCPT ); Mon, 27 Nov 2017 15:27:27 -0500 X-Greylist: delayed 1304 seconds by postgrey-1.27 at vger.kernel.org; Mon, 27 Nov 2017 15:27:27 EST Date: Mon, 27 Nov 2017 21:05:37 +0100 From: Thomas Meyer To: Randy Dunlap , torvalds@linux-foundation.org Cc: paul.burton@imgtec.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] auxdisplay: img-ascii-lcd: Only build on archs that have IOMEM Message-ID: <20171127200537.GA3557@localhost.localdomain> References: <20170810085353.27729-1-thomas@m3y3r.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.9.1 (2017-09-22) X-Authenticated-Sender: thomas@m3y3r.de Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 10, 2017 at 11:24:04AM -0700, Randy Dunlap wrote: > On 08/10/2017 01:53 AM, Thomas Meyer wrote: > > This avoids the MODPOST error: > > ERROR: "devm_ioremap_resource" [drivers/auxdisplay/img-ascii-lcd.ko] undefined! > > > > Signed-off-by: Thomas Meyer > > --- > > drivers/auxdisplay/Kconfig | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig > > index 9ae6681c90ad..9088c66e4c08 100644 > > --- a/drivers/auxdisplay/Kconfig > > +++ b/drivers/auxdisplay/Kconfig > > @@ -135,6 +135,7 @@ config CFAG12864B_RATE > > > > config IMG_ASCII_LCD > > tristate "Imagination Technologies ASCII LCD Display" > > + depends on HAS_IOMEM > > default y if MIPS_MALTA || MIPS_SEAD3 > > select SYSCON > > help > > > > I posted the same patch on 2017-JAN-01, so I agree with it. > > https://lkml.org/lkml/2017/1/1/87 > > Acked-by: Randy Dunlap No response from the maintainer yet. I think this driver is actually unmaintained. What to do now? > > -- > ~Randy