Re: [PATCH] fbcon: initialize blink interval before calling fb_set_par

2015-10-20 Thread Scot Doyle
On Wed, 21 Oct 2015, Benjamin Herrenschmidt wrote: > On Fri, 2015-10-09 at 15:08 +, Scot Doyle wrote: > > Since commit 27a4c827c34ac4256a190cc9d24607f953c1c459 > > fbcon: use the cursor blink interval provided by vt > > > > a PPC64LE kernel fails to boot when fbcon_add_cursor_timer uses an

Re: [PATCH] fbcon: initialize blink interval before calling fb_set_par

2015-10-20 Thread Benjamin Herrenschmidt
On Fri, 2015-10-09 at 15:08 +, Scot Doyle wrote: > Since commit 27a4c827c34ac4256a190cc9d24607f953c1c459 > fbcon: use the cursor blink interval provided by vt > > a PPC64LE kernel fails to boot when fbcon_add_cursor_timer uses an > uninitialized ops->cur_blink_jiffies. Prevent by initializ

Re: [PATCH] fbcon: initialize blink interval before calling fb_set_par

2015-10-09 Thread Benjamin Herrenschmidt
On Fri, 2015-10-09 at 15:08 +, Scot Doyle wrote: > Since commit 27a4c827c34ac4256a190cc9d24607f953c1c459 > fbcon: use the cursor blink interval provided by vt > > a PPC64LE kernel fails to boot when fbcon_add_cursor_timer uses an > uninitialized ops->cur_blink_jiffies. Prevent by initializ

[PATCH] fbcon: initialize blink interval before calling fb_set_par

2015-10-09 Thread Scot Doyle
Since commit 27a4c827c34ac4256a190cc9d24607f953c1c459 fbcon: use the cursor blink interval provided by vt a PPC64LE kernel fails to boot when fbcon_add_cursor_timer uses an uninitialized ops->cur_blink_jiffies. Prevent by initializing in fbcon_init before the call to info->fbops->fb_set_par.