Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-26 Thread Tomi Valkeinen
On 19/08/14 00:28, Geert Uytterhoeven wrote: > Hi Pranith, > > On Mon, Aug 18, 2014 at 11:13 PM, Pranith Kumar wrote: >> Fix a build error caused by >> >> drivers/built-in.o: In function `vga16fb_probe': >> drivers/video/fbdev/vga16fb.c:1326: undefined reference to >> `vgacon_remap_base' >>

Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-26 Thread Tomi Valkeinen
On 19/08/14 00:28, Geert Uytterhoeven wrote: Hi Pranith, On Mon, Aug 18, 2014 at 11:13 PM, Pranith Kumar bobby.pr...@gmail.com wrote: Fix a build error caused by drivers/built-in.o: In function `vga16fb_probe': drivers/video/fbdev/vga16fb.c:1326: undefined reference to

Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Pranith Kumar
On Mon, Aug 18, 2014 at 5:28 PM, Geert Uytterhoeven wrote: > Digging a bit deeper: There's no code left in arch/powerpc that actually > sets vgacon_remap_base, so it's not gonna work anyway. > It seems vga16 support on PPC died with the removal of arch/ppc/. OK. I will remove the dependency on

Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Geert Uytterhoeven
Hi Pranith, On Mon, Aug 18, 2014 at 11:13 PM, Pranith Kumar wrote: > Fix a build error caused by > > drivers/built-in.o: In function `vga16fb_probe': > drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' > drivers/video/fbdev/vga16fb.c:1326: undefined reference to

[PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Pranith Kumar
Fix a build error caused by drivers/built-in.o: In function `vga16fb_probe': drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' make: *** [vmlinux] Error 1 This is occuring as

[PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Pranith Kumar
Fix a build error caused by drivers/built-in.o: In function `vga16fb_probe': drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' make: *** [vmlinux] Error 1 This is occuring as

Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Geert Uytterhoeven
Hi Pranith, On Mon, Aug 18, 2014 at 11:13 PM, Pranith Kumar bobby.pr...@gmail.com wrote: Fix a build error caused by drivers/built-in.o: In function `vga16fb_probe': drivers/video/fbdev/vga16fb.c:1326: undefined reference to `vgacon_remap_base' drivers/video/fbdev/vga16fb.c:1326: undefined

Re: [PATCH] powerpc: Fix build error for vga16fb

2014-08-18 Thread Pranith Kumar
On Mon, Aug 18, 2014 at 5:28 PM, Geert Uytterhoeven ge...@linux-m68k.org wrote: Digging a bit deeper: There's no code left in arch/powerpc that actually sets vgacon_remap_base, so it's not gonna work anyway. It seems vga16 support on PPC died with the removal of arch/ppc/. OK. I will remove