Re: [PATCH] clk: Provide future parent in clk notification

2020-06-29 Thread Ikjoon Jang
On Wed, Jun 24, 2020 at 3:08 AM Stephen Boyd wrote: > > Quoting Ikjoon Jang (2020-06-15 22:52:23) > > Current clk notification handlers cannot know its new parent in > > PRE_RATE_CHANGE event. This patch simply adds parent clk to > > clk_notifier_data so the child clk is now able to know its futur

Re: [PATCH] clk: Provide future parent in clk notification

2020-06-23 Thread Stephen Boyd
Quoting Ikjoon Jang (2020-06-15 22:52:23) > Current clk notification handlers cannot know its new parent in > PRE_RATE_CHANGE event. This patch simply adds parent clk to > clk_notifier_data so the child clk is now able to know its future > parent prior to reparenting. Yes, but why is that importan

[PATCH] clk: Provide future parent in clk notification

2020-06-15 Thread Ikjoon Jang
Current clk notification handlers cannot know its new parent in PRE_RATE_CHANGE event. This patch simply adds parent clk to clk_notifier_data so the child clk is now able to know its future parent prior to reparenting. Change-Id: I099a784d5302a93951bdc6254d85f8df8c770462 Signed-off-by: Ikjoon Jang