All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sylwester Nawrocki <snjw23@gmail.com>
To: Jongpill Lee <boyko.lee@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, kgene.kim@samsung.com,
	boyko.lee@gmail.com
Subject: Re: [PATCH 1/3] ARM: EXYNOS4: Add ASV feature for Exynos4 series
Date: Sat, 12 Nov 2011 11:15:25 +0100	[thread overview]
Message-ID: <4EBE473D.4040408@gmail.com> (raw)
In-Reply-To: <1320904083-19173-2-git-send-email-boyko.lee@samsung.com>

On 11/10/2011 06:48 AM, Jongpill Lee wrote:
> This patch adds ASV feature for exynos4 series.
> ASV(Adaptive support voltage) feature support to get spec of SoC.
> And we can use to adjust voltage for operation SoC using by ASV result.
> 
> Signed-off-by: Jongpill Lee<boyko.lee@samsung.com>
> ---
...
> diff --git a/arch/arm/mach-exynos4/asv.c b/arch/arm/mach-exynos4/asv.c
> new file mode 100644
> index 0000000..b13d182
> --- /dev/null
> +++ b/arch/arm/mach-exynos4/asv.c
> @@ -0,0 +1,66 @@
> +/* linux/arch/arm/mach-exynos4/asv.c
> + *
> + * Copyright (c) 2011 Samsung Electronics Co., Ltd.
> + *		http://www.samsung.com/
> + *
> + * EXYNOS4 - ASV(Adaptive Support Voltage) driver
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> +*/
> +
> +#include<linux/init.h>
> +#include<linux/types.h>
> +#include<linux/kernel.h>
> +#include<linux/err.h>
> +#include<linux/io.h>
> +#include<linux/slab.h>
> +
> +#include<mach/map.h>
> +#include<mach/asv.h>
> +
> +static struct samsung_asv *exynos_asv;
> +
> +static int __init exynos_asv_init(void)
> +{
> +	exynos_asv = kzalloc(sizeof(struct samsung_asv), GFP_KERNEL);
> +	if (!exynos_asv)
> +		return -ENOMEM;
> +
> +	/* I will add asv driver of exynos4 series to regist */
> +
> +	if (exynos_asv->check_vdd_arm) {
> +		if (exynos_asv->check_vdd_arm())
> +			goto out;
> +	}
> +
> +	/* Get HPM Delay value */
> +	if (exynos_asv->get_hpm) {
> +		if (exynos_asv->get_hpm(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;

The 'else' statements should also be enclosed in brackets, according to the coding
style rules. How about just doing: 

	if (!exynos_asv->get_hpm || exynos_asv->get_hpm(exynos_asv))
		goto out;
?
> +
> +	/* Get IDS ARM Value */
> +	if (exynos_asv->get_ids) {
> +		if (exynos_asv->get_ids(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;
> +
> +	if (exynos_asv->store_result) {
> +		if (exynos_asv->store_result(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;
> +
> +	return 0;
> +out:
> +	pr_err("EXYNOS : Fail to initialize ASV\n");
> +
> +	kfree(exynos_asv);
> +
> +	return -EINVAL;
> +}
...

WARNING: multiple messages have this Message-ID (diff)
From: snjw23@gmail.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/3] ARM: EXYNOS4: Add ASV feature for Exynos4 series
Date: Sat, 12 Nov 2011 11:15:25 +0100	[thread overview]
Message-ID: <4EBE473D.4040408@gmail.com> (raw)
In-Reply-To: <1320904083-19173-2-git-send-email-boyko.lee@samsung.com>

On 11/10/2011 06:48 AM, Jongpill Lee wrote:
> This patch adds ASV feature for exynos4 series.
> ASV(Adaptive support voltage) feature support to get spec of SoC.
> And we can use to adjust voltage for operation SoC using by ASV result.
> 
> Signed-off-by: Jongpill Lee<boyko.lee@samsung.com>
> ---
...
> diff --git a/arch/arm/mach-exynos4/asv.c b/arch/arm/mach-exynos4/asv.c
> new file mode 100644
> index 0000000..b13d182
> --- /dev/null
> +++ b/arch/arm/mach-exynos4/asv.c
> @@ -0,0 +1,66 @@
> +/* linux/arch/arm/mach-exynos4/asv.c
> + *
> + * Copyright (c) 2011 Samsung Electronics Co., Ltd.
> + *		http://www.samsung.com/
> + *
> + * EXYNOS4 - ASV(Adaptive Support Voltage) driver
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> +*/
> +
> +#include<linux/init.h>
> +#include<linux/types.h>
> +#include<linux/kernel.h>
> +#include<linux/err.h>
> +#include<linux/io.h>
> +#include<linux/slab.h>
> +
> +#include<mach/map.h>
> +#include<mach/asv.h>
> +
> +static struct samsung_asv *exynos_asv;
> +
> +static int __init exynos_asv_init(void)
> +{
> +	exynos_asv = kzalloc(sizeof(struct samsung_asv), GFP_KERNEL);
> +	if (!exynos_asv)
> +		return -ENOMEM;
> +
> +	/* I will add asv driver of exynos4 series to regist */
> +
> +	if (exynos_asv->check_vdd_arm) {
> +		if (exynos_asv->check_vdd_arm())
> +			goto out;
> +	}
> +
> +	/* Get HPM Delay value */
> +	if (exynos_asv->get_hpm) {
> +		if (exynos_asv->get_hpm(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;

The 'else' statements should also be enclosed in brackets, according to the coding
style rules. How about just doing: 

	if (!exynos_asv->get_hpm || exynos_asv->get_hpm(exynos_asv))
		goto out;
?
> +
> +	/* Get IDS ARM Value */
> +	if (exynos_asv->get_ids) {
> +		if (exynos_asv->get_ids(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;
> +
> +	if (exynos_asv->store_result) {
> +		if (exynos_asv->store_result(exynos_asv))
> +			goto out;
> +	} else
> +		goto out;
> +
> +	return 0;
> +out:
> +	pr_err("EXYNOS : Fail to initialize ASV\n");
> +
> +	kfree(exynos_asv);
> +
> +	return -EINVAL;
> +}
...

  reply	other threads:[~2011-11-12 10:15 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-10  5:48 [PATCH V2 0/3] ASV support for Exynos4 series Jongpill Lee
2011-11-10  5:48 ` Jongpill Lee
2011-11-10  5:48 ` [PATCH 1/3] ARM: EXYNOS4: Add ASV feature " Jongpill Lee
2011-11-10  5:48   ` Jongpill Lee
2011-11-12 10:15   ` Sylwester Nawrocki [this message]
2011-11-12 10:15     ` Sylwester Nawrocki
2011-11-10  5:48 ` [PATCH 2/3] ARM: EXYNOS4: Add clock for Exynos4210 asv feature Jongpill Lee
2011-11-10  5:48   ` Jongpill Lee
2011-11-10  5:48 ` [PATCH 3/3] ARM: EXYNOS4: Support ASV for Exynos4210 Jongpill Lee
2011-11-10  5:48   ` Jongpill Lee
2011-11-11  1:47   ` MyungJoo Ham
2011-11-11  1:47     ` MyungJoo Ham
2011-12-03 10:16   ` Kukjin Kim
2011-12-03 10:16     ` Kukjin Kim
2011-12-03 10:20 ` [PATCH V2 0/3] ASV support for Exynos4 series Kukjin Kim
2011-12-03 10:20   ` 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=4EBE473D.4040408@gmail.com \
    --to=snjw23@gmail.com \
    --cc=boyko.lee@gmail.com \
    --cc=boyko.lee@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    /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.