Author: myles Date: Wed Apr 21 22:36:09 2010 New Revision: 5472 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5472
Log: Move the prototype for run_vsa. Signed-off-by: Myles Watson <[email protected]> Acked-by: Myles Watson <[email protected]> Modified: trunk/src/devices/oprom/x86.c Modified: trunk/src/devices/oprom/x86.c ============================================================================== --- trunk/src/devices/oprom/x86.c Wed Apr 21 22:06:10 2010 (r5471) +++ trunk/src/devices/oprom/x86.c Wed Apr 21 22:36:09 2010 (r5472) @@ -41,7 +41,6 @@ void (*run_optionrom)(u32 devfn) __attribute__((regparm(0))) = (void *)&__run_optionrom; void (*vga_enable_console)(void) __attribute__((regparm(0))) = (void *)&__run_interrupt; -void (*run_vsa)(u32 smm, u32 sysmem) __attribute__((regparm(0))) = (void *)&__run_vsa; int (*intXX_handler[256])(struct eregs *regs) = { NULL }; @@ -171,6 +170,8 @@ #define VSA2_BUFFER 0x60000 #define VSA2_ENTRY_POINT 0x60020 +void (*run_vsa)(u32 smm, u32 sysmem) __attribute__((regparm(0))) = (void *)&__run_vsa; + // TODO move to a header file. void do_vsmbios(void); -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

