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


Groups > linux.kernel > #1664435 > unrolled thread

[PATCH] power: supply: constify psy_tcd_ops.

Started byArvind Yadav <arvind.yadav.cs@gmail.com>
First post2017-06-13 07:20 +0200
Last post2017-06-14 22:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] power: supply: constify psy_tcd_ops. Arvind Yadav <arvind.yadav.cs@gmail.com> - 2017-06-13 07:20 +0200
    Re: [PATCH] power: supply: constify psy_tcd_ops. Sebastian Reichel <sre@kernel.org> - 2017-06-14 22:20 +0200

#1664435 — [PATCH] power: supply: constify psy_tcd_ops.

FromArvind Yadav <arvind.yadav.cs@gmail.com>
Date2017-06-13 07:20 +0200
Subject[PATCH] power: supply: constify psy_tcd_ops.
Message-ID<tRMpb-3Pk-3@gated-at.bofh.it>
File size before:
text	data	bss	dec   hex filename
4240	 200	 80	4520 11a8 drivers/power/supply/power_supply_core.o

File size After adding 'const':
text	data	bss	dec   hex filename
4296	 136	 80	4512 11a0 drivers/power/supply/power_supply_core.o

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
 drivers/power/supply/power_supply_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/power/supply/power_supply_core.c b/drivers/power/supply/power_supply_core.c
index 7ec7c7c..2cc64b8 100644
--- a/drivers/power/supply/power_supply_core.c
+++ b/drivers/power/supply/power_supply_core.c
@@ -669,7 +669,7 @@ static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
 	return ret;
 }
 
-static struct thermal_cooling_device_ops psy_tcd_ops = {
+static const struct thermal_cooling_device_ops psy_tcd_ops = {
 	.get_max_state = ps_get_max_charge_cntl_limit,
 	.get_cur_state = ps_get_cur_chrage_cntl_limit,
 	.set_cur_state = ps_set_cur_charge_cntl_limit,
-- 
1.9.1

[toc] | [next] | [standalone]


#1666198

FromSebastian Reichel <sre@kernel.org>
Date2017-06-14 22:20 +0200
Message-ID<tSmVH-1k9-19@gated-at.bofh.it>
In reply to#1664435

[Multipart message — attachments visible in raw view] — view raw

Hi,

On Tue, Jun 13, 2017 at 10:39:43AM +0530, Arvind Yadav wrote:
> File size before:
> text	data	bss	dec   hex filename
> 4240	 200	 80	4520 11a8 drivers/power/supply/power_supply_core.o
> 
> File size After adding 'const':
> text	data	bss	dec   hex filename
> 4296	 136	 80	4512 11a0 drivers/power/supply/power_supply_core.o
> 
> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>

Thanks, queued.

-- Sebastian

> ---
>  drivers/power/supply/power_supply_core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/power/supply/power_supply_core.c b/drivers/power/supply/power_supply_core.c
> index 7ec7c7c..2cc64b8 100644
> --- a/drivers/power/supply/power_supply_core.c
> +++ b/drivers/power/supply/power_supply_core.c
> @@ -669,7 +669,7 @@ static int ps_set_cur_charge_cntl_limit(struct thermal_cooling_device *tcd,
>  	return ret;
>  }
>  
> -static struct thermal_cooling_device_ops psy_tcd_ops = {
> +static const struct thermal_cooling_device_ops psy_tcd_ops = {
>  	.get_max_state = ps_get_max_charge_cntl_limit,
>  	.get_cur_state = ps_get_cur_chrage_cntl_limit,
>  	.set_cur_state = ps_set_cur_charge_cntl_limit,
> -- 
> 1.9.1
> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web