diff --git a/reactos/boot/freeldr/freeldr/arch/powerpc/mach.c b/reactos/boot/freeldr/freeldr/arch/powerpc/mach.c index 72f8865c85d..be8cf7e840a 100644 --- a/reactos/boot/freeldr/freeldr/arch/powerpc/mach.c +++ b/reactos/boot/freeldr/freeldr/arch/powerpc/mach.c @@ -420,10 +420,6 @@ PpcHwIdle(VOID) /* UNIMPLEMENTED */ } -/* Compatibility functions that don't do much */ -VOID PpcVideoPrepareForReactOS(BOOLEAN Setup) { -} - void PpcDefaultMachVtbl() { MachVtbl.ConsPutChar = PpcOfwPutChar; @@ -442,7 +438,6 @@ void PpcDefaultMachVtbl() MachVtbl.VideoSetPaletteColor = PpcVideoSetPaletteColor; MachVtbl.VideoGetPaletteColor = PpcVideoGetPaletteColor; MachVtbl.VideoSync = PpcVideoSync; - MachVtbl.VideoPrepareForReactOS = PpcVideoPrepareForReactOS; MachVtbl.GetMemoryMap = PpcGetMemoryMap; diff --git a/reactos/boot/freeldr/freeldr/arch/powerpc/prep.c b/reactos/boot/freeldr/freeldr/arch/powerpc/prep.c index ac0aff22bf0..713e6163af4 100644 --- a/reactos/boot/freeldr/freeldr/arch/powerpc/prep.c +++ b/reactos/boot/freeldr/freeldr/arch/powerpc/prep.c @@ -62,10 +62,6 @@ void PpcPrepVideoGetDisplaySize( PULONG Width, PULONG Height, PULONG Depth ) *Depth = 16; } -void PpcPrepVideoPrepareForReactOS(BOOLEAN setup) -{ -} - VOID PpcInitializeMmu(int max); ULONG PpcPrepGetMemoryMap( PBIOS_MEMORY_MAP BiosMemoryMap, @@ -141,8 +137,6 @@ void PpcPrepInit() MachVtbl.VideoSetDisplayMode = PpcPrepVideoSetDisplayMode; MachVtbl.VideoGetDisplaySize = PpcPrepVideoGetDisplaySize; - MachVtbl.VideoPrepareForReactOS = PpcPrepVideoPrepareForReactOS; - MachVtbl.GetMemoryMap = PpcPrepGetMemoryMap; MachVtbl.HwDetect = PpcPrepHwDetect; MachVtbl.HwIdle = PcPrepHwIdle;