From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ryan Mallon Date: Fri, 15 Mar 2013 22:30:17 +0000 Subject: Re: [PATCH] video: ep93xx_fb: include for devm_ioremap() Message-Id: <5143A0F9.1010301@gmail.com> List-Id: References: <201303151520.26873.hartleys@visionengravers.com> In-Reply-To: <201303151520.26873.hartleys@visionengravers.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: H Hartley Sweeten Cc: linux-kernel@vger.kernel.org, linux-fbdev@vger.kernel.org, stable@vger.kernel.org, FlorianSchandinat@gmx.de, damien.cassou@lifl.fr On 16/03/13 09:20, H Hartley Sweeten wrote: > commit be867814 "drivers/video/ep93xx-fb.c: use devm_ functions" > > Introduced a build error: > > drivers/video/ep93xx-fb.c: In function 'ep93xxfb_probe': > drivers/video/ep93xx-fb.c:532: error: implicit declaration of function 'devm_ioremap' > drivers/video/ep93xx-fb.c:533: warning: assignment makes pointer from integer without a cast > > Include to pickup the declaration of 'devm_ioremap'. > > Signed-off-by: H Hartley Sweeten > Cc: > Cc: Florian Tobias Schandinat > Cc: Ryan Mallon > Cc: Damien Cassou Acked-by: Ryan Mallon > --- > drivers/video/ep93xx-fb.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/video/ep93xx-fb.c b/drivers/video/ep93xx-fb.c > index 3f2519d..e06cd5d 100644 > --- a/drivers/video/ep93xx-fb.c > +++ b/drivers/video/ep93xx-fb.c > @@ -23,6 +23,7 @@ > #include > #include > #include > +#include > > #include >