2021-04-24 12:42:58

by J. Neuschäfer

[permalink] [raw]
Subject: [PATCH] ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info

The name of the struct, as defined in arch/arm/mach-imx/pm-imx5.c,
is imx5_cpu_suspend_info.

Signed-off-by: Jonathan Neuschäfer <[email protected]>
---
arch/arm/mach-imx/suspend-imx53.S | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-imx/suspend-imx53.S b/arch/arm/mach-imx/suspend-imx53.S
index 41b8aad653634..46570ec2fbcfe 100644
--- a/arch/arm/mach-imx/suspend-imx53.S
+++ b/arch/arm/mach-imx/suspend-imx53.S
@@ -28,11 +28,11 @@
* ^
* ^
* imx53_suspend code
- * PM_INFO structure(imx53_suspend_info)
+ * PM_INFO structure(imx5_cpu_suspend_info)
* ======================== low address =======================
*/

-/* Offsets of members of struct imx53_suspend_info */
+/* Offsets of members of struct imx5_cpu_suspend_info */
#define SUSPEND_INFO_MX53_M4IF_V_OFFSET 0x0
#define SUSPEND_INFO_MX53_IOMUXC_V_OFFSET 0x4
#define SUSPEND_INFO_MX53_IO_COUNT_OFFSET 0x8
--
2.30.2


2021-04-24 12:45:22

by Fabio Estevam

[permalink] [raw]
Subject: Re: [PATCH] ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info

Hi Jonathan,

On Sat, Apr 24, 2021 at 9:39 AM Jonathan Neuschäfer
<[email protected]> wrote:
>
> The name of the struct, as defined in arch/arm/mach-imx/pm-imx5.c,
> is imx5_cpu_suspend_info.
>
> Signed-off-by: Jonathan Neuschäfer <[email protected]>

Good catch:

Reviewed-by: Fabio Estevam <[email protected]>