2020-08-24 23:28:28

by Luc Van Oostenryck

[permalink] [raw]
Subject: [PATCH] fix comment concerning GCC 4.6

GCC 4.6 is not supported anymore, so remove a reference to it,
leaving just the part about version prior GCC 5.

Signed-off-by: Luc Van Oostenryck <[email protected]>
---
include/linux/compiler_attributes.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/compiler_attributes.h b/include/linux/compiler_attributes.h
index af7a58c19e20..ea7b756b1c8f 100644
--- a/include/linux/compiler_attributes.h
+++ b/include/linux/compiler_attributes.h
@@ -22,7 +22,7 @@

/*
* __has_attribute is supported on gcc >= 5, clang >= 2.9 and icc >= 17.
- * In the meantime, to support 4.6 <= gcc < 5, we implement __has_attribute
+ * In the meantime, to support gcc < 5, we implement __has_attribute
* by hand.
*/
#ifndef __has_attribute
--
2.28.0


2020-08-27 07:52:01

by Miguel Ojeda

[permalink] [raw]
Subject: Re: [PATCH] fix comment concerning GCC 4.6

Hi Luc,

On Tue, Aug 25, 2020 at 1:25 AM Luc Van Oostenryck
<[email protected]> wrote:
>
> GCC 4.6 is not supported anymore, so remove a reference to it,
> leaving just the part about version prior GCC 5.
>
> Signed-off-by: Luc Van Oostenryck <[email protected]>

Queueing this one too, thanks.

Cheers,
Miguel

2020-08-28 08:24:24

by Luc Van Oostenryck

[permalink] [raw]
Subject: Re: [PATCH] fix comment concerning GCC 4.6

On Thu, Aug 27, 2020 at 09:50:45AM +0200, Miguel Ojeda wrote:
> Hi Luc,
>
> On Tue, Aug 25, 2020 at 1:25 AM Luc Van Oostenryck
> <[email protected]> wrote:
> >
> > GCC 4.6 is not supported anymore, so remove a reference to it,
> > leaving just the part about version prior GCC 5.
> >
> > Signed-off-by: Luc Van Oostenryck <[email protected]>
>
> Queueing this one too, thanks.

Thanks,
-- Luc