linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: dsa: felix: Make some symbols static
@ 2020-07-18 10:01 Wang Hai
  2020-07-18 10:40 ` Vladimir Oltean
  0 siblings, 1 reply; 3+ messages in thread
From: Wang Hai @ 2020-07-18 10:01 UTC (permalink / raw)
  To: UNGLinuxDriver, vladimir.oltean, claudiu.manoil,
	alexandre.belloni, andrew, vivien.didelot, f.fainelli, davem,
	kuba
  Cc: linux-kernel, netdev, wanghai38

Fix sparse build warning:

drivers/net/dsa/ocelot/felix_vsc9959.c:560:19: warning:
 symbol 'vsc9959_vcap_is2_keys' was not declared. Should it be static?
drivers/net/dsa/ocelot/felix_vsc9959.c:640:19: warning:
 symbol 'vsc9959_vcap_is2_actions' was not declared. Should it be static?

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
---
 drivers/net/dsa/ocelot/felix_vsc9959.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/dsa/ocelot/felix_vsc9959.c b/drivers/net/dsa/ocelot/felix_vsc9959.c
index 1dd9e348152d..2067776773f7 100644
--- a/drivers/net/dsa/ocelot/felix_vsc9959.c
+++ b/drivers/net/dsa/ocelot/felix_vsc9959.c
@@ -557,7 +557,7 @@ static const struct ocelot_stat_layout vsc9959_stats_layout[] = {
 	{ .offset = 0x111,	.name = "drop_green_prio_7", },
 };
 
-struct vcap_field vsc9959_vcap_is2_keys[] = {
+static struct vcap_field vsc9959_vcap_is2_keys[] = {
 	/* Common: 41 bits */
 	[VCAP_IS2_TYPE]				= {  0,   4},
 	[VCAP_IS2_HK_FIRST]			= {  4,   1},
@@ -637,7 +637,7 @@ struct vcap_field vsc9959_vcap_is2_keys[] = {
 	[VCAP_IS2_HK_OAM_IS_Y1731]		= {182,   1},
 };
 
-struct vcap_field vsc9959_vcap_is2_actions[] = {
+static struct vcap_field vsc9959_vcap_is2_actions[] = {
 	[VCAP_IS2_ACT_HIT_ME_ONCE]		= {  0,  1},
 	[VCAP_IS2_ACT_CPU_COPY_ENA]		= {  1,  1},
 	[VCAP_IS2_ACT_CPU_QU_NUM]		= {  2,  3},
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: dsa: felix: Make some symbols static
  2020-07-18 10:01 [PATCH] net: dsa: felix: Make some symbols static Wang Hai
@ 2020-07-18 10:40 ` Vladimir Oltean
  2020-07-18 10:49   ` wanghai (M)
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Oltean @ 2020-07-18 10:40 UTC (permalink / raw)
  To: Wang Hai
  Cc: UNGLinuxDriver, vladimir.oltean, claudiu.manoil,
	alexandre.belloni, andrew, vivien.didelot, f.fainelli, davem,
	kuba, linux-kernel, netdev

On Sat, Jul 18, 2020 at 06:01:58PM +0800, Wang Hai wrote:
> Fix sparse build warning:
> 
> drivers/net/dsa/ocelot/felix_vsc9959.c:560:19: warning:
>  symbol 'vsc9959_vcap_is2_keys' was not declared. Should it be static?
> drivers/net/dsa/ocelot/felix_vsc9959.c:640:19: warning:
>  symbol 'vsc9959_vcap_is2_actions' was not declared. Should it be static?
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Wang Hai <wanghai38@huawei.com>
> ---

Please update your tree.

commit 3ab4ceb6e9639e4e42d473e46ae7976c24187876
Author: Vladimir Oltean <vladimir.oltean@nxp.com>
Date:   Sat Jun 20 18:43:36 2020 +0300

    net: dsa: felix: make vcap is2 keys and actions static

    Get rid of some sparse warnings.

    Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
    Signed-off-by: David S. Miller <davem@davemloft.net>

>  drivers/net/dsa/ocelot/felix_vsc9959.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/dsa/ocelot/felix_vsc9959.c b/drivers/net/dsa/ocelot/felix_vsc9959.c
> index 1dd9e348152d..2067776773f7 100644
> --- a/drivers/net/dsa/ocelot/felix_vsc9959.c
> +++ b/drivers/net/dsa/ocelot/felix_vsc9959.c
> @@ -557,7 +557,7 @@ static const struct ocelot_stat_layout vsc9959_stats_layout[] = {
>  	{ .offset = 0x111,	.name = "drop_green_prio_7", },
>  };
>  
> -struct vcap_field vsc9959_vcap_is2_keys[] = {
> +static struct vcap_field vsc9959_vcap_is2_keys[] = {
>  	/* Common: 41 bits */
>  	[VCAP_IS2_TYPE]				= {  0,   4},
>  	[VCAP_IS2_HK_FIRST]			= {  4,   1},
> @@ -637,7 +637,7 @@ struct vcap_field vsc9959_vcap_is2_keys[] = {
>  	[VCAP_IS2_HK_OAM_IS_Y1731]		= {182,   1},
>  };
>  
> -struct vcap_field vsc9959_vcap_is2_actions[] = {
> +static struct vcap_field vsc9959_vcap_is2_actions[] = {
>  	[VCAP_IS2_ACT_HIT_ME_ONCE]		= {  0,  1},
>  	[VCAP_IS2_ACT_CPU_COPY_ENA]		= {  1,  1},
>  	[VCAP_IS2_ACT_CPU_QU_NUM]		= {  2,  3},
> -- 
> 2.17.1
> 

Thanks,
-Vladimir

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: dsa: felix: Make some symbols static
  2020-07-18 10:40 ` Vladimir Oltean
@ 2020-07-18 10:49   ` wanghai (M)
  0 siblings, 0 replies; 3+ messages in thread
From: wanghai (M) @ 2020-07-18 10:49 UTC (permalink / raw)
  To: Vladimir Oltean
  Cc: UNGLinuxDriver, vladimir.oltean, claudiu.manoil,
	alexandre.belloni, andrew, vivien.didelot, f.fainelli, davem,
	kuba, linux-kernel, netdev

Thanks for reminding me, I'll do it.

在 2020/7/18 18:40, Vladimir Oltean 写道:
> On Sat, Jul 18, 2020 at 06:01:58PM +0800, Wang Hai wrote:
>> Fix sparse build warning:
>>
>> drivers/net/dsa/ocelot/felix_vsc9959.c:560:19: warning:
>>   symbol 'vsc9959_vcap_is2_keys' was not declared. Should it be static?
>> drivers/net/dsa/ocelot/felix_vsc9959.c:640:19: warning:
>>   symbol 'vsc9959_vcap_is2_actions' was not declared. Should it be static?
>>
>> Reported-by: Hulk Robot <hulkci@huawei.com>
>> Signed-off-by: Wang Hai <wanghai38@huawei.com>
>> ---
> Please update your tree.
>
> commit 3ab4ceb6e9639e4e42d473e46ae7976c24187876
> Author: Vladimir Oltean <vladimir.oltean@nxp.com>
> Date:   Sat Jun 20 18:43:36 2020 +0300
>
>      net: dsa: felix: make vcap is2 keys and actions static
>
>      Get rid of some sparse warnings.
>
>      Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
>      Signed-off-by: David S. Miller <davem@davemloft.net>
>
>>   drivers/net/dsa/ocelot/felix_vsc9959.c | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/net/dsa/ocelot/felix_vsc9959.c b/drivers/net/dsa/ocelot/felix_vsc9959.c
>> index 1dd9e348152d..2067776773f7 100644
>> --- a/drivers/net/dsa/ocelot/felix_vsc9959.c
>> +++ b/drivers/net/dsa/ocelot/felix_vsc9959.c
>> @@ -557,7 +557,7 @@ static const struct ocelot_stat_layout vsc9959_stats_layout[] = {
>>   	{ .offset = 0x111,	.name = "drop_green_prio_7", },
>>   };
>>   
>> -struct vcap_field vsc9959_vcap_is2_keys[] = {
>> +static struct vcap_field vsc9959_vcap_is2_keys[] = {
>>   	/* Common: 41 bits */
>>   	[VCAP_IS2_TYPE]				= {  0,   4},
>>   	[VCAP_IS2_HK_FIRST]			= {  4,   1},
>> @@ -637,7 +637,7 @@ struct vcap_field vsc9959_vcap_is2_keys[] = {
>>   	[VCAP_IS2_HK_OAM_IS_Y1731]		= {182,   1},
>>   };
>>   
>> -struct vcap_field vsc9959_vcap_is2_actions[] = {
>> +static struct vcap_field vsc9959_vcap_is2_actions[] = {
>>   	[VCAP_IS2_ACT_HIT_ME_ONCE]		= {  0,  1},
>>   	[VCAP_IS2_ACT_CPU_COPY_ENA]		= {  1,  1},
>>   	[VCAP_IS2_ACT_CPU_QU_NUM]		= {  2,  3},
>> -- 
>> 2.17.1
>>
> Thanks,
> -Vladimir
>
> .
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-18 10:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-18 10:01 [PATCH] net: dsa: felix: Make some symbols static Wang Hai
2020-07-18 10:40 ` Vladimir Oltean
2020-07-18 10:49   ` wanghai (M)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).