All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tomasz Figa <tomasz.figa@gmail.com>
To: Pankaj Dubey <pankaj.dubey@samsung.com>,
	linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Cc: kgene.kim@samsung.com, linux@arm.linux.org.uk,
	t.figa@samsung.com, chow.kim@samsung.com,
	yg1004.jang@samsung.com, vikas.sajjan@samsung.com,
	s.nawrocki@samsung.com, b.zolnierkie@samsung.com
Subject: Re: [PATCH v2 01/10] ARM: EXYNOS: Make exynos machine_ops as static
Date: Fri, 25 Apr 2014 23:05:41 +0200	[thread overview]
Message-ID: <535ACE25.5020503@gmail.com> (raw)
In-Reply-To: <1398429166-5539-2-git-send-email-pankaj.dubey@samsung.com>

Hi Pankaj,

On 25.04.2014 14:32, Pankaj Dubey wrote:
> As machine function ops are used only in this file let's make
> them static.
>
> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
> ---
>   arch/arm/mach-exynos/exynos.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c
> index b32a907..2388ee4 100644
> --- a/arch/arm/mach-exynos/exynos.c
> +++ b/arch/arm/mach-exynos/exynos.c
> @@ -198,7 +198,7 @@ static struct map_desc exynos5_iodesc[] __initdata = {
>   	},
>   };
>
> -void exynos_restart(enum reboot_mode mode, const char *cmd)
> +static void exynos_restart(enum reboot_mode mode, const char *cmd)
>   {
>   	struct device_node *np;
>   	u32 val = 0x1;
> @@ -235,7 +235,7 @@ void __init exynos_cpufreq_init(void)
>   	platform_device_register_simple("exynos-cpufreq", -1, NULL, 0);
>   }
>
> -void __init exynos_init_late(void)
> +static void __init exynos_init_late(void)
>   {
>   	if (of_machine_is_compatible("samsung,exynos5440"))
>   		/* to be supported later */
> @@ -296,7 +296,7 @@ static void __init exynos_map_io(void)
>   		iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
>   }
>
> -void __init exynos_init_io(void)
> +static void __init exynos_init_io(void)
>   {
>   	debug_ll_io_init();
>
>

This patch seems to be irrelevant to the rest of this series. Anyway, 
the changes itself are fine, except that I can see more functions that 
could be made static as well:
  - exynos_cpuidle_init(),
  - exynos_cpufreq_init().

In fact, they both could be probably eliminated, as they are just 
oneliners doing things that could be done in exynos_dt_machine_init() 
directly.

So, if you are doing this kind of cleanup, you could do this as well and 
probably also replace platform_device + platform_device_register() with 
platform_device_register_simple() for cpuidle, to reduce line count and 
make it consistent with cpufreq.

Best regards,
Tomasz

WARNING: multiple messages have this Message-ID (diff)
From: tomasz.figa@gmail.com (Tomasz Figa)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 01/10] ARM: EXYNOS: Make exynos machine_ops as static
Date: Fri, 25 Apr 2014 23:05:41 +0200	[thread overview]
Message-ID: <535ACE25.5020503@gmail.com> (raw)
In-Reply-To: <1398429166-5539-2-git-send-email-pankaj.dubey@samsung.com>

Hi Pankaj,

On 25.04.2014 14:32, Pankaj Dubey wrote:
> As machine function ops are used only in this file let's make
> them static.
>
> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
> ---
>   arch/arm/mach-exynos/exynos.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c
> index b32a907..2388ee4 100644
> --- a/arch/arm/mach-exynos/exynos.c
> +++ b/arch/arm/mach-exynos/exynos.c
> @@ -198,7 +198,7 @@ static struct map_desc exynos5_iodesc[] __initdata = {
>   	},
>   };
>
> -void exynos_restart(enum reboot_mode mode, const char *cmd)
> +static void exynos_restart(enum reboot_mode mode, const char *cmd)
>   {
>   	struct device_node *np;
>   	u32 val = 0x1;
> @@ -235,7 +235,7 @@ void __init exynos_cpufreq_init(void)
>   	platform_device_register_simple("exynos-cpufreq", -1, NULL, 0);
>   }
>
> -void __init exynos_init_late(void)
> +static void __init exynos_init_late(void)
>   {
>   	if (of_machine_is_compatible("samsung,exynos5440"))
>   		/* to be supported later */
> @@ -296,7 +296,7 @@ static void __init exynos_map_io(void)
>   		iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc));
>   }
>
> -void __init exynos_init_io(void)
> +static void __init exynos_init_io(void)
>   {
>   	debug_ll_io_init();
>
>

This patch seems to be irrelevant to the rest of this series. Anyway, 
the changes itself are fine, except that I can see more functions that 
could be made static as well:
  - exynos_cpuidle_init(),
  - exynos_cpufreq_init().

In fact, they both could be probably eliminated, as they are just 
oneliners doing things that could be done in exynos_dt_machine_init() 
directly.

So, if you are doing this kind of cleanup, you could do this as well and 
probably also replace platform_device + platform_device_register() with 
platform_device_register_simple() for cpuidle, to reduce line count and 
make it consistent with cpufreq.

Best regards,
Tomasz

  reply	other threads:[~2014-04-25 21:05 UTC|newest]

Thread overview: 105+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-02  7:50 [PATCH 0/7] ARM: Exynos: PMU cleanup and refactoring for using DT Pankaj Dubey
2014-04-02  7:50 ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 01/10] ARM: EXYNOS: Cleanup "mach-exynos/common.h" file Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-08 15:59   ` Tomasz Figa
2014-04-08 15:59     ` Tomasz Figa
2014-04-10  4:35     ` Pankaj Dubey
2014-04-10  4:35       ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 02/10] ARM: EXYNOS: Correct file path in comment message Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-02 12:01   ` Michal Simek
2014-04-02 12:01     ` Michal Simek
2014-04-03  1:40     ` Pankaj Dubey
2014-04-03  1:40       ` Pankaj Dubey
2014-04-03  2:12       ` Kukjin Kim
2014-04-03  2:12         ` Kukjin Kim
2014-04-02  7:50 ` [PATCH 03/10] ARM: EXYNOS: Move SYSREG definition into sys-reg specific file Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-02 11:27   ` Sylwester Nawrocki
2014-04-02 11:27     ` Sylwester Nawrocki
2014-04-11  6:07     ` Pankaj Dubey
2014-04-11  6:07       ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 04/10] ARM: EXYNOS: Remove regs-pmu.h file dependency from pm_domain Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 05/10] ARM: EXYNOS: Move "regs-pmu" header inclusion in common.h Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-08 16:09   ` Tomasz Figa
2014-04-08 16:09     ` Tomasz Figa
2014-04-10  4:58     ` Pankaj Dubey
2014-04-10  4:58       ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 06/10] ARM: EXYNOS: Add support for mapping PMU base address via DT Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-02 11:48   ` Sylwester Nawrocki
2014-04-02 11:48     ` Sylwester Nawrocki
2014-04-02 12:15     ` Michal Simek
2014-04-02 12:15       ` Michal Simek
2014-04-03  9:07       ` Sylwester Nawrocki
2014-04-03  9:07         ` Sylwester Nawrocki
2014-04-05 10:58         ` Pankaj Dubey
2014-04-05 10:58           ` Pankaj Dubey
2014-04-07  6:02           ` Michal Simek
2014-04-07  6:02             ` Michal Simek
2014-04-05 10:53     ` Pankaj Dubey
2014-04-05 10:53       ` Pankaj Dubey
2014-04-05 10:53       ` Pankaj Dubey
2014-04-23 13:02   ` Vikas Sajjan
2014-04-23 13:02     ` Vikas Sajjan
2014-04-24  2:45     ` Pankaj Dubey
2014-04-24  2:45       ` Pankaj Dubey
2014-04-02  7:50 ` [PATCH 07/10] ARM: EXYNOS: Refactored code for PMU register mapping " Pankaj Dubey
2014-04-02  7:50   ` Pankaj Dubey
2014-04-25 12:32 ` [PATCH v2 00/10] ARM: Exynos: PMU cleanup and refactoring for using DT Pankaj Dubey
2014-04-25 12:32   ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 01/10] ARM: EXYNOS: Make exynos machine_ops as static Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:05     ` Tomasz Figa [this message]
2014-04-25 21:05       ` Tomasz Figa
2014-04-26  4:42       ` Pankaj Dubey
2014-04-26  4:42         ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 02/10] ARM: EXYNOS: Cleanup "mach-exynos/common.h" file Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:06     ` Tomasz Figa
2014-04-25 21:06       ` Tomasz Figa
2014-04-25 12:32   ` [PATCH v2 03/10] ARM: EXYNOS: Move SYSREG definition into sys-reg specific file Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:08     ` Tomasz Figa
2014-04-25 21:08       ` Tomasz Figa
2014-04-25 12:32   ` [PATCH v2 04/10] ARM: EXYNOS: Remove file path from comment section Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:14     ` Tomasz Figa
2014-04-25 21:14       ` Tomasz Figa
2014-04-25 12:32   ` [PATCH v2 05/10] ARM: EXYNOS: Remove regs-pmu.h header dependency from pm_domain Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:19     ` Tomasz Figa
2014-04-25 21:19       ` Tomasz Figa
2014-04-26  3:39       ` Pankaj Dubey
2014-04-26  3:39         ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 06/10] ARM: EXYNOS: Add support for mapping PMU base address via DT Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:43     ` Tomasz Figa
2014-04-25 21:43       ` Tomasz Figa
2014-04-27  7:29       ` Pankaj Dubey
2014-04-27  7:29         ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 07/10] ARM: EXYNOS: Remove "linux/bug.h" from pmu.c Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 21:44     ` Tomasz Figa
2014-04-25 21:44       ` Tomasz Figa
2014-04-25 12:32   ` [PATCH v2 08/10] ARM: EXYNOS: Refactored code for using PMU address via DT Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 22:19     ` Tomasz Figa
2014-04-25 22:19       ` Tomasz Figa
2014-04-26  3:32       ` Pankaj Dubey
2014-04-26  3:32         ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 09/10] ARM: EXYNOS: Move "mach/map.h" inclusion from regs-pmu.h to platsmp.c Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 12:32   ` [PATCH v2 10/10] ARM: EXYNOS: Add device tree based initialization support for PMU Pankaj Dubey
2014-04-25 12:32     ` Pankaj Dubey
2014-04-25 22:40     ` Tomasz Figa
2014-04-25 22:40       ` Tomasz Figa
2014-04-26  4:36       ` Pankaj Dubey
2014-04-26  4:36         ` Pankaj Dubey
2014-04-25 22:43   ` [PATCH v2 00/10] ARM: Exynos: PMU cleanup and refactoring for using DT Tomasz Figa
2014-04-25 22:43     ` Tomasz Figa
2014-04-26  2:07     ` Pankaj Dubey
2014-04-26  2:07       ` Pankaj Dubey

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=535ACE25.5020503@gmail.com \
    --to=tomasz.figa@gmail.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=chow.kim@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=pankaj.dubey@samsung.com \
    --cc=s.nawrocki@samsung.com \
    --cc=t.figa@samsung.com \
    --cc=vikas.sajjan@samsung.com \
    --cc=yg1004.jang@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.