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>