[coreboot] libpayload: make cursor position available to payloads

Peter Stuge peter at stuge.se
Fri Aug 29 22:40:07 CEST 2008


Stefan Reinauer wrote:
> +void video_console_get_cursor(unsigned int *x, unsigned int *y, unsigned int *en)
> +{
> +	*x=0;
> +	*y=0;
> +	*en=0;
> +
> +	if (console->get_cursor)
> +		console->get_cursor(x, y, en);
> +}

Make the above if (console && console->get_cursor) and it's:

Acked-by: Peter Stuge <peter at stuge.se>




More information about the coreboot mailing list