Message ID | 20240131135604.1488157-2-kazuhiro3.hayashi@toshiba.co.jp (mailing list archive) |
---|---|
State | Rejected |
Headers | show |
Series | clk: Fix for restructuring for no reparent case | expand |
Hi!
Is there something wrong with the time here?
Date: Wed, 31 Jan 2024 22:56:04 +0900
From: Kazuhiro Hayashi <kazuhiro3.hayashi@toshiba.co.jp>
On Wed 2024-01-31 22:56:04, Kazuhiro Hayashi wrote:
pavel@duo:~$ date
Wed 31 Jan 2024 12:15:57 PM CET
This will "fix" itself in two hours, but I wonder what went wrong
there.
Best regards,
Pavel
Hello Pavel, > Is there something wrong with the time here? Thanks for pointing this out. Yes, the time in my environment was wrong due to recent setting changes... Let me resend the patch just in case. Best regards, Kazu > -----Original Message----- > From: cip-dev@lists.cip-project.org <cip-dev@lists.cip-project.org> On Behalf Of Pavel Machek > Sent: Wednesday, January 31, 2024 8:17 PM > To: hayashi kazuhiro(林 和宏 DME ○DIG□MPS○MP4) <kazuhiro3.hayashi@toshiba.co.jp> > Cc: cip-dev@lists.cip-project.org; iwamatsu nobuhiro(岩松 信洋 ○DITC□DIT○OST) > <nobuhiro1.iwamatsu@toshiba.co.jp>; pavel@denx.de; biju.das.jz@bp.renesas.com; saito yuki(齊藤 優貴 DME ○D > IG□EAS○EA3) <yuki.saito@toshiba.co.jp> > Subject: Re: [cip-dev] [PATCH 1/1] clk: Fix best_parent_rate after moving code into a separate function > > Hi! > > Is there something wrong with the time here? > > Date: Wed, 31 Jan 2024 22:56:04 +0900 > From: Kazuhiro Hayashi <kazuhiro3.hayashi@toshiba.co.jp> > On Wed 2024-01-31 22:56:04, Kazuhiro Hayashi wrote: > > pavel@duo:~$ date > Wed 31 Jan 2024 12:15:57 PM CET > > This will "fix" itself in two hours, but I wonder what went wrong > there. > > Best regards, > Pavel > -- > DENX Software Engineering GmbH, Managing Director: Erika Unter > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index fe61fdc7c025..c048c6b1b8c3 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -614,6 +614,7 @@ clk_core_determine_rate_no_reparent(struct clk_hw *hw, best = clk_core_get_rate_nolock(core); } + req->best_parent_rate = best; req->rate = best; return 0;