Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1437159 > unrolled thread

[PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32

Started byAbhilash Kesavan <a.kesavan@samsung.com>
First post2016-07-05 18:30 +0200
Last post2016-07-06 08:50 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32 Abhilash Kesavan <a.kesavan@samsung.com> - 2016-07-05 18:30 +0200
    Re: [PATCH 1/2] soc: samsung: Change type of PMU configuration  register value to u32 Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2016-07-06 08:50 +0200

#1437159 — [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32

FromAbhilash Kesavan <a.kesavan@samsung.com>
Date2016-07-05 18:30 +0200
Subject[PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32
Message-ID<rRBou-5cR-5@gated-at.bofh.it>
Exynos7 has certain PMU registers that needs to be configured with
u32 values.

Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
---
 drivers/soc/samsung/exynos-pmu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/soc/samsung/exynos-pmu.h b/drivers/soc/samsung/exynos-pmu.h
index a469e36..1bdc506 100644
--- a/drivers/soc/samsung/exynos-pmu.h
+++ b/drivers/soc/samsung/exynos-pmu.h
@@ -18,7 +18,7 @@
 
 struct exynos_pmu_conf {
 	unsigned int offset;
-	u8 val[NUM_SYS_POWERDOWN];
+	unsigned int val[NUM_SYS_POWERDOWN];
 };
 
 struct exynos_pmu_data {
-- 
1.9.1

[toc] | [next] | [standalone]


#1437484 — Re: [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32

FromKrzysztof Kozlowski <k.kozlowski@samsung.com>
Date2016-07-06 08:50 +0200
SubjectRe: [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32
Message-ID<rROOJ-5IG-11@gated-at.bofh.it>
In reply to#1437159
On Tue, Jul 5, 2016 at 10:28 PM, Abhilash Kesavan <a.kesavan@samsung.com> wrote:
> Exynos7 has certain PMU registers that needs to be configured with
> u32 values.
>
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> ---
>  drivers/soc/samsung/exynos-pmu.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/soc/samsung/exynos-pmu.h b/drivers/soc/samsung/exynos-pmu.h
> index a469e36..1bdc506 100644
> --- a/drivers/soc/samsung/exynos-pmu.h
> +++ b/drivers/soc/samsung/exynos-pmu.h
> @@ -18,7 +18,7 @@
>
>  struct exynos_pmu_conf {
>         unsigned int offset;
> -       u8 val[NUM_SYS_POWERDOWN];
> +       unsigned int val[NUM_SYS_POWERDOWN];

You mentioned u32 but I see unsigned int here. This should be u32.

BTW, none of your emails reached my samsung inbox. I got them only
from the lists. Please investigate why this couldn't be delivered to
samsung.com address.

Best regards,
Krzysztof

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web