All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene@kernel.org>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
	linux-samsung-soc@vger.kernel.org,
	Pankaj Dubey <pankaj.dubey@samsung.com>,
	Kyungmin Park <kyungmin.park@samsung.com>,
	linux-kernel@vger.kernel.org,
	Amit Daniel Kachhap <amit.daniel@samsung.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] ARM: EXYNOS: use u8 for val[] in struct exynos_pmu_conf
Date: Thu, 27 Nov 2014 02:49:01 +0900	[thread overview]
Message-ID: <5476128D.6070400@kernel.org> (raw)
In-Reply-To: <1787532.9Q2MHGpzCz@amdc1032>

On 11/27/14 02:21, Bartlomiej Zolnierkiewicz wrote:
> Values stored in val[] are never bigger than a byte.
> 
>    text    data     bss     dec     hex filename
>    7716    3692       8   11416    2c98 arch/arm/mach-exynos/pmu.o.before
>    5436    1908       8    7352    1cb8 arch/arm/mach-exynos/pmu.o.after
> 
> Cc: Pankaj Dubey <pankaj.dubey@samsung.com>
> Cc: Amit Daniel Kachhap <amit.daniel@samsung.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> v2:
> - rebased on top of next-20141126 branch of linux-next kernel tree
>   (it also applies fine to for-next branch of linux-samsung.git)
> 
>  arch/arm/mach-exynos/pmu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c
> index ccb0120..c15761c 100644
> --- a/arch/arm/mach-exynos/pmu.c
> +++ b/arch/arm/mach-exynos/pmu.c
> @@ -25,7 +25,7 @@
>  
>  struct exynos_pmu_conf {
>  	unsigned int offset;
> -	unsigned int val[NUM_SYS_POWERDOWN];
> +	u8 val[NUM_SYS_POWERDOWN];
>  };
>  
>  struct exynos_pmu_data {

Applied, thanks.

- Kukjin

WARNING: multiple messages have this Message-ID (diff)
From: kgene@kernel.org (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] ARM: EXYNOS: use u8 for val[] in struct exynos_pmu_conf
Date: Thu, 27 Nov 2014 02:49:01 +0900	[thread overview]
Message-ID: <5476128D.6070400@kernel.org> (raw)
In-Reply-To: <1787532.9Q2MHGpzCz@amdc1032>

On 11/27/14 02:21, Bartlomiej Zolnierkiewicz wrote:
> Values stored in val[] are never bigger than a byte.
> 
>    text    data     bss     dec     hex filename
>    7716    3692       8   11416    2c98 arch/arm/mach-exynos/pmu.o.before
>    5436    1908       8    7352    1cb8 arch/arm/mach-exynos/pmu.o.after
> 
> Cc: Pankaj Dubey <pankaj.dubey@samsung.com>
> Cc: Amit Daniel Kachhap <amit.daniel@samsung.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> v2:
> - rebased on top of next-20141126 branch of linux-next kernel tree
>   (it also applies fine to for-next branch of linux-samsung.git)
> 
>  arch/arm/mach-exynos/pmu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-exynos/pmu.c b/arch/arm/mach-exynos/pmu.c
> index ccb0120..c15761c 100644
> --- a/arch/arm/mach-exynos/pmu.c
> +++ b/arch/arm/mach-exynos/pmu.c
> @@ -25,7 +25,7 @@
>  
>  struct exynos_pmu_conf {
>  	unsigned int offset;
> -	unsigned int val[NUM_SYS_POWERDOWN];
> +	u8 val[NUM_SYS_POWERDOWN];
>  };
>  
>  struct exynos_pmu_data {

Applied, thanks.

- Kukjin

  reply	other threads:[~2014-11-26 17:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-26 17:21 [PATCH v2] ARM: EXYNOS: use u8 for val[] in struct exynos_pmu_conf Bartlomiej Zolnierkiewicz
2014-11-26 17:21 ` Bartlomiej Zolnierkiewicz
2014-11-26 17:49 ` Kukjin Kim [this message]
2014-11-26 17:49   ` Kukjin Kim

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=5476128D.6070400@kernel.org \
    --to=kgene@kernel.org \
    --cc=amit.daniel@samsung.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=pankaj.dubey@samsung.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.