[Armadeus-commitlog] UNNAMED PROJECT branch, armadeus-2020.07-rc5, updated. eaf7d215685256254da923
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2020-06-30 07:53:44
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "UNNAMED PROJECT".
The branch, armadeus-2020.07-rc5 has been updated
via eaf7d215685256254da9235b2fa0f8ce0840c8f9 (commit)
from 3f0959d62c8581af49a417d7d5b1ee0be4b0e4d4 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit eaf7d215685256254da9235b2fa0f8ce0840c8f9
Author: Peng Fan <pen...@nx...>
Date: Sat May 30 16:44:15 2020 +0800
pinctrl: imx8m: move soc info to data section
The soc info without initialization value should be put into
data section. The driver could be used before relocation,
with it in BSS section could cause issue, since BSS section
is not initializated and it might overwrite other areas that
used by others, such as dtb.
Signed-off-by: Peng Fan <pen...@nx...>
-----------------------------------------------------------------------
Summary of changes:
drivers/pinctrl/nxp/pinctrl-imx8m.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/nxp/pinctrl-imx8m.c b/drivers/pinctrl/nxp/pinctrl-imx8m.c
index 5b7cbb69ae..0626fde58f 100644
--- a/drivers/pinctrl/nxp/pinctrl-imx8m.c
+++ b/drivers/pinctrl/nxp/pinctrl-imx8m.c
@@ -8,7 +8,7 @@
#include "pinctrl-imx.h"
-static struct imx_pinctrl_soc_info imx8mq_pinctrl_soc_info;
+static struct imx_pinctrl_soc_info imx8mq_pinctrl_soc_info __attribute__((section(".data")));
static int imx8mq_pinctrl_probe(struct udevice *dev)
{
hooks/post-receive
--
UNNAMED PROJECT
|