powerpc: Remove unused vgacon_remap_base & fix build break
authorMichael Ellerman <mpe@ellerman.id.au>
Mon, 27 Oct 2014 09:56:14 +0000 (20:56 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 9 Nov 2014 22:59:31 +0000 (09:59 +1100)
commite88f157de5e0b327b1b26e3260de4b16c07e2d19
tree38de5bf25f41979208a243964b29f7e0626f8db7
parent1bc9e47aa8e4b0f9629e218d4c7667308ca6af67
powerpc: Remove unused vgacon_remap_base & fix build break

The build is broken with CONFIG_PPC32=y, CONFIG_FB_VGA16=y and
CONFIG_VGA_CONSOLE=n.

The problem is that vgacon_remap_base is not defined. It's used in:

    #define VGA_MAP_MEM(x,s) (x + vgacon_remap_base)

Which is used in the vga16fb.c code.

Digging down it seems vgacon_remap_base is never initialised. It used to
be, back in arch/ppc (pplus.c and prep_setup.c), but none of that code
ever made it to arch/powerpc.

So given it's been unused for >6 years, remove it.

Whether vga16fb.c works on 32-bit is another question, but this patch
shouldn't affect it.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/vga.h
arch/powerpc/kernel/setup_32.c