From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753344AbcGFGrb (ORCPT ); Wed, 6 Jul 2016 02:47:31 -0400 Received: from mail-oi0-f66.google.com ([209.85.218.66]:33352 "EHLO mail-oi0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753264AbcGFGrW (ORCPT ); Wed, 6 Jul 2016 02:47:22 -0400 MIME-Version: 1.0 In-Reply-To: <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> References: <1467750507-13853-1-git-send-email-a.kesavan@samsung.com> <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> From: Krzysztof Kozlowski Date: Wed, 6 Jul 2016 08:47:21 +0200 X-Google-Sender-Auth: RadyKxJWk-oZukCbk4RO5yfRzOQ Message-ID: Subject: Re: [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32 To: Abhilash Kesavan Cc: linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kgene.kim@samsung.com, linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 5, 2016 at 10:28 PM, Abhilash Kesavan wrote: > Exynos7 has certain PMU registers that needs to be configured with > u32 values. > > Signed-off-by: Abhilash Kesavan > --- > 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Krzysztof Kozlowski Subject: Re: [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32 Date: Wed, 6 Jul 2016 08:47:21 +0200 Message-ID: References: <1467750507-13853-1-git-send-email-a.kesavan@samsung.com> <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Abhilash Kesavan Cc: kgene.kim@samsung.com, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org List-Id: linux-samsung-soc@vger.kernel.org On Tue, Jul 5, 2016 at 10:28 PM, Abhilash Kesavan wrote: > Exynos7 has certain PMU registers that needs to be configured with > u32 values. > > Signed-off-by: Abhilash Kesavan > --- > 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: k.kozlowski@samsung.com (Krzysztof Kozlowski) Date: Wed, 6 Jul 2016 08:47:21 +0200 Subject: [PATCH 1/2] soc: samsung: Change type of PMU configuration register value to u32 In-Reply-To: <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> References: <1467750507-13853-1-git-send-email-a.kesavan@samsung.com> <1467750507-13853-2-git-send-email-a.kesavan@samsung.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Tue, Jul 5, 2016 at 10:28 PM, Abhilash Kesavan wrote: > Exynos7 has certain PMU registers that needs to be configured with > u32 values. > > Signed-off-by: Abhilash Kesavan > --- > 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