2020-07-15 12:42:19

by Lee Jones

[permalink] [raw]
Subject: [PATCH 1/1] doc:it_IT: process: coding-style.rst: Correct __maybe_unused compiler label

Flag is __maybe_unused, not __maybe_used.

Cc: Federico Vaga <[email protected]>
Cc: Jonathan Corbet <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Lee Jones <[email protected]>
---
Documentation/translations/it_IT/process/coding-style.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/translations/it_IT/process/coding-style.rst b/Documentation/translations/it_IT/process/coding-style.rst
index 6f4f85832deea..a346f1f2ce21f 100644
--- a/Documentation/translations/it_IT/process/coding-style.rst
+++ b/Documentation/translations/it_IT/process/coding-style.rst
@@ -1097,7 +1097,7 @@ la direttiva condizionale su di esse.

Se avete una variabile o funzione che potrebbe non essere usata in alcune
configurazioni, e quindi il compilatore potrebbe avvisarvi circa la definizione
-inutilizzata, marcate questa definizione come __maybe_used piuttosto che
+inutilizzata, marcate questa definizione come __maybe_unused piuttosto che
racchiuderla in una direttiva condizionale del preprocessore. (Comunque,
se una variabile o funzione è *sempre* inutilizzata, rimuovetela).

--
2.25.1


2020-07-16 15:04:46

by Federico Vaga

[permalink] [raw]
Subject: Re: [PATCH 1/1] doc:it_IT: process: coding-style.rst: Correct __maybe_unused compiler label

Of course, you are right! Thanks

On 2020-07-15 14:23, Lee Jones wrote:
> Flag is __maybe_unused, not __maybe_used.
>
> Cc: Federico Vaga <[email protected]>
> Cc: Jonathan Corbet <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: Lee Jones <[email protected]>
> ---
> Documentation/translations/it_IT/process/coding-style.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/translations/it_IT/process/coding-style.rst
> b/Documentation/translations/it_IT/process/coding-style.rst
> index 6f4f85832deea..a346f1f2ce21f 100644
> --- a/Documentation/translations/it_IT/process/coding-style.rst
> +++ b/Documentation/translations/it_IT/process/coding-style.rst
> @@ -1097,7 +1097,7 @@ la direttiva condizionale su di esse.
>
> Se avete una variabile o funzione che potrebbe non essere usata in
> alcune
> configurazioni, e quindi il compilatore potrebbe avvisarvi circa la
> definizione
> -inutilizzata, marcate questa definizione come __maybe_used piuttosto
> che
> +inutilizzata, marcate questa definizione come __maybe_unused piuttosto
> che
> racchiuderla in una direttiva condizionale del preprocessore.
> (Comunque,
> se una variabile o funzione è *sempre* inutilizzata, rimuovetela).

--
Federico Vaga
http://www.federicovaga.it/

2020-07-23 10:34:38

by Lee Jones

[permalink] [raw]
Subject: Re: [PATCH 1/1] doc:it_IT: process: coding-style.rst: Correct __maybe_unused compiler label

On Thu, 16 Jul 2020, Federico Vaga wrote:

> Of course, you are right! Thanks
>
> On 2020-07-15 14:23, Lee Jones wrote:
> > Flag is __maybe_unused, not __maybe_used.
> >
> > Cc: Federico Vaga <[email protected]>
> > Cc: Jonathan Corbet <[email protected]>
> > Cc: [email protected]
> > Cc: [email protected]
> > Signed-off-by: Lee Jones <[email protected]>

Any idea who will/should take this?

> > ---
> > Documentation/translations/it_IT/process/coding-style.rst | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Documentation/translations/it_IT/process/coding-style.rst
> > b/Documentation/translations/it_IT/process/coding-style.rst
> > index 6f4f85832deea..a346f1f2ce21f 100644
> > --- a/Documentation/translations/it_IT/process/coding-style.rst
> > +++ b/Documentation/translations/it_IT/process/coding-style.rst
> > @@ -1097,7 +1097,7 @@ la direttiva condizionale su di esse.
> >
> > Se avete una variabile o funzione che potrebbe non essere usata in
> > alcune
> > configurazioni, e quindi il compilatore potrebbe avvisarvi circa la
> > definizione
> > -inutilizzata, marcate questa definizione come __maybe_used piuttosto
> > che
> > +inutilizzata, marcate questa definizione come __maybe_unused piuttosto
> > che
> > racchiuderla in una direttiva condizionale del preprocessore.
> > (Comunque,
> > se una variabile o funzione è *sempre* inutilizzata, rimuovetela).
>

--
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

2020-07-23 13:16:20

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH 1/1] doc:it_IT: process: coding-style.rst: Correct __maybe_unused compiler label

On Thu, 23 Jul 2020 11:33:33 +0100
Lee Jones <[email protected]> wrote:

> On Thu, 16 Jul 2020, Federico Vaga wrote:
>
> > Of course, you are right! Thanks
> >
> > On 2020-07-15 14:23, Lee Jones wrote:
> > > Flag is __maybe_unused, not __maybe_used.
> > >
> > > Cc: Federico Vaga <[email protected]>
> > > Cc: Jonathan Corbet <[email protected]>
> > > Cc: [email protected]
> > > Cc: [email protected]
> > > Signed-off-by: Lee Jones <[email protected]>
>
> Any idea who will/should take this?

It's a docs patch, I'll apply it once I get back to the queue....

Thanks,

jon

2020-07-23 20:44:49

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH 1/1] doc:it_IT: process: coding-style.rst: Correct __maybe_unused compiler label

On Wed, 15 Jul 2020 13:23:28 +0100
Lee Jones <[email protected]> wrote:

> Flag is __maybe_unused, not __maybe_used.
>
> Cc: Federico Vaga <[email protected]>
> Cc: Jonathan Corbet <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: Lee Jones <[email protected]>
> ---
> Documentation/translations/it_IT/process/coding-style.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/translations/it_IT/process/coding-style.rst b/Documentation/translations/it_IT/process/coding-style.rst
> index 6f4f85832deea..a346f1f2ce21f 100644
> --- a/Documentation/translations/it_IT/process/coding-style.rst
> +++ b/Documentation/translations/it_IT/process/coding-style.rst
> @@ -1097,7 +1097,7 @@ la direttiva condizionale su di esse.
>
> Se avete una variabile o funzione che potrebbe non essere usata in alcune
> configurazioni, e quindi il compilatore potrebbe avvisarvi circa la definizione
> -inutilizzata, marcate questa definizione come __maybe_used piuttosto che
> +inutilizzata, marcate questa definizione come __maybe_unused piuttosto che
> racchiuderla in una direttiva condizionale del preprocessore. (Comunque,

Applied, thanks.

jon