linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] i.MX clock fixes for 5.6, round 2
@ 2020-02-24 12:13 Shawn Guo
  2020-03-06 21:11 ` Stephen Boyd
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2020-02-24 12:13 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: Fabio Estevam, Stefan Agner, kernel, linux-imx, linux-clk,
	linux-arm-kernel

The following changes since commit 5eb40257047fb11085d582b7b9ccd0bffe900726:

  clk: imx8mn: Fix incorrect clock defines (2020-02-17 15:18:00 +0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-fixes-5.6-2

for you to fetch changes up to 6fb9006abe37e44afaed4f2a5fd3a247a815bb8d:

  clk: imx8mp: Correct the enet_qos parent clock (2020-02-24 15:38:03 +0800)

----------------------------------------------------------------
i.MX clock fixes for 5.6, round 2:

 - A couple of fixes on i.MX8MP clock driver to correct HDMI_AXI and
   ENET_QOS_ROOT parent clock.
 - A couple of fixes on clk-scu driver to ensure that messages sent to
   i.MX System Controller are 4 bytes aligned.

----------------------------------------------------------------
Anson Huang (1):
      clk: imx8mp: Correct IMX8MP_CLK_HDMI_AXI clock parent

Fugang Duan (1):
      clk: imx8mp: Correct the enet_qos parent clock

Leonard Crestez (2):
      clk: imx: Align imx sc clock msg structs to 4
      clk: imx: Align imx sc clock parent msg structs to 4

 drivers/clk/imx/clk-imx8mp.c | 4 ++--
 drivers/clk/imx/clk-scu.c    | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] i.MX clock fixes for 5.6, round 2
  2020-02-24 12:13 [GIT PULL] i.MX clock fixes for 5.6, round 2 Shawn Guo
@ 2020-03-06 21:11 ` Stephen Boyd
  2020-03-16  0:22   ` Shawn Guo
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Boyd @ 2020-03-06 21:11 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Fabio Estevam, Stefan Agner, kernel, linux-imx, linux-clk,
	linux-arm-kernel

Quoting Shawn Guo (2020-02-24 04:13:23)
> The following changes since commit 5eb40257047fb11085d582b7b9ccd0bffe900726:
> 
>   clk: imx8mn: Fix incorrect clock defines (2020-02-17 15:18:00 +0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-fixes-5.6-2
> 
> for you to fetch changes up to 6fb9006abe37e44afaed4f2a5fd3a247a815bb8d:
> 
>   clk: imx8mp: Correct the enet_qos parent clock (2020-02-24 15:38:03 +0800)
> 
> ----------------------------------------------------------------
> i.MX clock fixes for 5.6, round 2:
> 
>  - A couple of fixes on i.MX8MP clock driver to correct HDMI_AXI and
>    ENET_QOS_ROOT parent clock.
>  - A couple of fixes on clk-scu driver to ensure that messages sent to
>    i.MX System Controller are 4 bytes aligned.
> 
> ----------------------------------------------------------------
> Anson Huang (1):
>       clk: imx8mp: Correct IMX8MP_CLK_HDMI_AXI clock parent
> 
> Fugang Duan (1):
>       clk: imx8mp: Correct the enet_qos parent clock
> 
> Leonard Crestez (2):
>       clk: imx: Align imx sc clock msg structs to 4
>       clk: imx: Align imx sc clock parent msg structs to 4

Can you resend without these last two? I don't know what's going on with
that thread.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] i.MX clock fixes for 5.6, round 2
  2020-03-06 21:11 ` Stephen Boyd
@ 2020-03-16  0:22   ` Shawn Guo
  2020-03-16 18:27     ` Stephen Boyd
  0 siblings, 1 reply; 4+ messages in thread
From: Shawn Guo @ 2020-03-16  0:22 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: Fabio Estevam, Stefan Agner, kernel, linux-imx, linux-clk,
	linux-arm-kernel

On Fri, Mar 06, 2020 at 01:11:19PM -0800, Stephen Boyd wrote:
> Quoting Shawn Guo (2020-02-24 04:13:23)
> > The following changes since commit 5eb40257047fb11085d582b7b9ccd0bffe900726:
> > 
> >   clk: imx8mn: Fix incorrect clock defines (2020-02-17 15:18:00 +0800)
> > 
> > are available in the Git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-fixes-5.6-2
> > 
> > for you to fetch changes up to 6fb9006abe37e44afaed4f2a5fd3a247a815bb8d:
> > 
> >   clk: imx8mp: Correct the enet_qos parent clock (2020-02-24 15:38:03 +0800)
> > 
> > ----------------------------------------------------------------
> > i.MX clock fixes for 5.6, round 2:
> > 
> >  - A couple of fixes on i.MX8MP clock driver to correct HDMI_AXI and
> >    ENET_QOS_ROOT parent clock.
> >  - A couple of fixes on clk-scu driver to ensure that messages sent to
> >    i.MX System Controller are 4 bytes aligned.
> > 
> > ----------------------------------------------------------------
> > Anson Huang (1):
> >       clk: imx8mp: Correct IMX8MP_CLK_HDMI_AXI clock parent
> > 
> > Fugang Duan (1):
> >       clk: imx8mp: Correct the enet_qos parent clock
> > 
> > Leonard Crestez (2):
> >       clk: imx: Align imx sc clock msg structs to 4
> >       clk: imx: Align imx sc clock parent msg structs to 4
> 
> Can you resend without these last two? I don't know what's going on with
> that thread.

Done. Please consider to pull, thanks!

The following changes since commit 5eb40257047fb11085d582b7b9ccd0bffe900726:

  clk: imx8mn: Fix incorrect clock defines (2020-02-17 15:18:00 +0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-fixes-5.6-2

for you to fetch changes up to 857c9d31f59f0c0e6117518452ca54883e47d859:

  clk: imx8mp: Correct the enet_qos parent clock (2020-03-16 08:18:20 +0800)

----------------------------------------------------------------
i.MX clock fixes for 5.6, round 2:

 - A couple of fixes on i.MX8MP clock driver to correct HDMI_AXI and
   ENET_QOS_ROOT parent clock.

----------------------------------------------------------------
Anson Huang (1):
      clk: imx8mp: Correct IMX8MP_CLK_HDMI_AXI clock parent

Fugang Duan (1):
      clk: imx8mp: Correct the enet_qos parent clock

 drivers/clk/imx/clk-imx8mp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] i.MX clock fixes for 5.6, round 2
  2020-03-16  0:22   ` Shawn Guo
@ 2020-03-16 18:27     ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2020-03-16 18:27 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Fabio Estevam, Stefan Agner, kernel, linux-imx, linux-clk,
	linux-arm-kernel

Quoting Shawn Guo (2020-03-15 17:22:40)
> On Fri, Mar 06, 2020 at 01:11:19PM -0800, Stephen Boyd wrote:
> > Quoting Shawn Guo (2020-02-24 04:13:23)
> > > The following changes since commit 5eb40257047fb11085d582b7b9ccd0bffe900726:
> > > 
> > >   clk: imx8mn: Fix incorrect clock defines (2020-02-17 15:18:00 +0800)
> > > 
> > > are available in the Git repository at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-clk-fixes-5.6-2
> > > 
> > > for you to fetch changes up to 6fb9006abe37e44afaed4f2a5fd3a247a815bb8d:
> > > 
> > >   clk: imx8mp: Correct the enet_qos parent clock (2020-02-24 15:38:03 +0800)
> > > 
> > > ----------------------------------------------------------------

Thanks. Pulled into clk-fixes.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-16 18:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-24 12:13 [GIT PULL] i.MX clock fixes for 5.6, round 2 Shawn Guo
2020-03-06 21:11 ` Stephen Boyd
2020-03-16  0:22   ` Shawn Guo
2020-03-16 18:27     ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).