From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 3/7] clk: imx-cpu: Add missing CLK_IS_CRITICAL
Date: Wed, 19 Aug 2020 21:45:07 +0200 [thread overview]
Message-ID: <20200819194511.14005-3-s.hauer@pengutronix.de> (raw)
In-Reply-To: <20200819194511.14005-1-s.hauer@pengutronix.de>
The CPU clock should never be disabled, mark it as critical as done in
the Kernel.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/clk/imx/clk-cpu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/imx/clk-cpu.c b/drivers/clk/imx/clk-cpu.c
index 13b2dfc9ad..f8d54ddba3 100644
--- a/drivers/clk/imx/clk-cpu.c
+++ b/drivers/clk/imx/clk-cpu.c
@@ -100,7 +100,7 @@ struct clk *imx_clk_cpu(const char *name, const char *parent_name,
cpu->clk.name = name;
cpu->clk.ops = &clk_cpu_ops;
- cpu->clk.flags = 0;
+ cpu->clk.flags = CLK_IS_CRITICAL;
cpu->clk.parent_names = &icpu->parent_name;
cpu->clk.num_parents = 1;
--
2.28.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2020-08-19 19:45 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-19 19:45 [PATCH 1/7] clk: imx: make string arrays const char * const * Sascha Hauer
2020-08-19 19:45 ` [PATCH 2/7] clk: imx: clk-pll14xx: remove debug leftover Sascha Hauer
2020-08-19 19:45 ` Sascha Hauer [this message]
2020-08-19 19:45 ` [PATCH 4/7] clk: imx. clk-composite-8m: Update from Linux Kernel Sascha Hauer
2020-08-19 19:45 ` [PATCH 5/7] clk: imx: Add imx_clk_gate4_flags Sascha Hauer
2020-08-19 19:45 ` [PATCH 6/7] clk: imx: Add Linux function names Sascha Hauer
2020-08-19 19:45 ` [PATCH 7/7] clk: imx8mp: update clk driver from Linux kernel Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200819194511.14005-3-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox