All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: atomisp: fix `-Werror=return-type`
@ 2021-10-02 23:17 Ammar Faizi
  2021-10-03 16:19 ` Pavel Skripkin
  2021-10-04  9:05 ` Dan Carpenter
  0 siblings, 2 replies; 8+ messages in thread
From: Ammar Faizi @ 2021-10-02 23:17 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Ammar Faizi, Pavel Skripkin, Sakari Ailus, linux-media,
	linux-staging, linux-kernel, Bedirhan KURT

Bedirhan reported build error:
```
  drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
  drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
   1649 | }
        | ^
  cc1: some warnings being treated as errors
  make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
  make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
  make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
  make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
  make: *** [Makefile:1868: drivers] Error 2
```

Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
remove useless returns") incorrectly removed a required return results
in the above build error. Reinstate it.

Cc: Pavel Skripkin <paskripkin@gmail.com>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
Cc: linux-media@vger.kernel.org
Cc: linux-staging@lists.linux.dev
Cc: linux-kernel@vger.kernel.org
Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
---
 .../media/atomisp/pci/hive_isp_css_common/host/input_system.c    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
index 8e085dda0c18..1bd917e81743 100644
--- a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
+++ b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
@@ -1646,6 +1646,7 @@ static input_system_err_t input_system_configure_channel_sensor(
 	default:
 		return INPUT_SYSTEM_ERR_PARAMETER_NOT_SUPPORTED;
 	}
+	return INPUT_SYSTEM_ERR_NO_ERROR;
 }
 
 // Test flags and set structure.
-- 
2.30.2


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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
  2021-10-02 23:17 [PATCH] media: atomisp: fix `-Werror=return-type` Ammar Faizi
@ 2021-10-03 16:19 ` Pavel Skripkin
  2021-10-03 23:24     ` Ammar Faizi
  2021-10-04  9:05 ` Dan Carpenter
  1 sibling, 1 reply; 8+ messages in thread
From: Pavel Skripkin @ 2021-10-03 16:19 UTC (permalink / raw)
  To: Ammar Faizi, Mauro Carvalho Chehab
  Cc: Sakari Ailus, linux-media, linux-staging, linux-kernel, Bedirhan KURT

On 10/3/21 02:17, Ammar Faizi wrote:
> Bedirhan reported build error:
> ```
>    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
>    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
>     1649 | }
>          | ^
>    cc1: some warnings being treated as errors
>    make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
>    make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
>    make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
>    make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
>    make: *** [Makefile:1868: drivers] Error 2
> ```
> 
> Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> remove useless returns") incorrectly removed a required return results
> in the above build error. Reinstate it.
> 
> Cc: Pavel Skripkin <paskripkin@gmail.com>
> Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> Cc: linux-media@vger.kernel.org
> Cc: linux-staging@lists.linux.dev
> Cc: linux-kernel@vger.kernel.org
> Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
> ---
>   .../media/atomisp/pci/hive_isp_css_common/host/input_system.c    | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> index 8e085dda0c18..1bd917e81743 100644
> --- a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> +++ b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> @@ -1646,6 +1646,7 @@ static input_system_err_t input_system_configure_channel_sensor(
>   	default:
>   		return INPUT_SYSTEM_ERR_PARAMETER_NOT_SUPPORTED;
>   	}
> +	return INPUT_SYSTEM_ERR_NO_ERROR;
>   }
>   
>   // Test flags and set structure.
> 

Hi, Ammar!


Thank you for fixing this, but it's already fixed in linux-next tree. 
See commit 05344a1d2ea7 ("media: atomisp: restore missing 'return' 
statement").

Again, I am sorry for introducing this bug :(




With regards,
Pavel Skripkin

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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
  2021-10-03 16:19 ` Pavel Skripkin
@ 2021-10-03 23:24     ` Ammar Faizi
  0 siblings, 0 replies; 8+ messages in thread
From: Ammar Faizi @ 2021-10-03 23:24 UTC (permalink / raw)
  To: Pavel Skripkin
  Cc: Mauro Carvalho Chehab, Sakari Ailus, linux-media, linux-staging,
	linux-kernel, Bedirhan KURT

On Sun, Oct 3, 2021 at 11:19 PM Pavel Skripkin <paskripkin@gmail.com> wrote:
>
> On 10/3/21 02:17, Ammar Faizi wrote:
> > Bedirhan reported build error:
> > ```
> >    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
> >    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
> >     1649 | }
> >          | ^
> >    cc1: some warnings being treated as errors
> >    make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
> >    make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
> >    make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
> >    make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
> >    make: *** [Makefile:1868: drivers] Error 2
> > ```
> >
> > Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> > remove useless returns") incorrectly removed a required return results
> > in the above build error. Reinstate it.
> >
> > Cc: Pavel Skripkin <paskripkin@gmail.com>
> > Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> > Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> > Cc: linux-media@vger.kernel.org
> > Cc: linux-staging@lists.linux.dev
> > Cc: linux-kernel@vger.kernel.org
> > Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> > Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> > Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
> > ---
> >   .../media/atomisp/pci/hive_isp_css_common/host/input_system.c    | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > index 8e085dda0c18..1bd917e81743 100644
> > --- a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > +++ b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > @@ -1646,6 +1646,7 @@ static input_system_err_t input_system_configure_channel_sensor(
> >       default:
> >               return INPUT_SYSTEM_ERR_PARAMETER_NOT_SUPPORTED;
> >       }
> > +     return INPUT_SYSTEM_ERR_NO_ERROR;
> >   }
> >
> >   // Test flags and set structure.
> >
>
> Hi, Ammar!
>
>
> Thank you for fixing this, but it's already fixed in linux-next tree.
> See commit 05344a1d2ea7 ("media: atomisp: restore missing 'return'
> statement").
>
> Again, I am sorry for introducing this bug :(
>
>
>
>
> With regards,
> Pavel Skripkin

No worries, thanks for the update :D

-- 
Ammar Faizi

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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
@ 2021-10-03 23:24     ` Ammar Faizi
  0 siblings, 0 replies; 8+ messages in thread
From: Ammar Faizi @ 2021-10-03 23:24 UTC (permalink / raw)
  To: Pavel Skripkin
  Cc: Mauro Carvalho Chehab, Sakari Ailus, linux-media, linux-staging,
	linux-kernel, Bedirhan KURT

On Sun, Oct 3, 2021 at 11:19 PM Pavel Skripkin <paskripkin@gmail.com> wrote:
>
> On 10/3/21 02:17, Ammar Faizi wrote:
> > Bedirhan reported build error:
> > ```
> >    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
> >    drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
> >     1649 | }
> >          | ^
> >    cc1: some warnings being treated as errors
> >    make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
> >    make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
> >    make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
> >    make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
> >    make: *** [Makefile:1868: drivers] Error 2
> > ```
> >
> > Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> > remove useless returns") incorrectly removed a required return results
> > in the above build error. Reinstate it.
> >
> > Cc: Pavel Skripkin <paskripkin@gmail.com>
> > Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> > Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> > Cc: linux-media@vger.kernel.org
> > Cc: linux-staging@lists.linux.dev
> > Cc: linux-kernel@vger.kernel.org
> > Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> > Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> > Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
> > ---
> >   .../media/atomisp/pci/hive_isp_css_common/host/input_system.c    | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > index 8e085dda0c18..1bd917e81743 100644
> > --- a/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > +++ b/drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c
> > @@ -1646,6 +1646,7 @@ static input_system_err_t input_system_configure_channel_sensor(
> >       default:
> >               return INPUT_SYSTEM_ERR_PARAMETER_NOT_SUPPORTED;
> >       }
> > +     return INPUT_SYSTEM_ERR_NO_ERROR;
> >   }
> >
> >   // Test flags and set structure.
> >
>
> Hi, Ammar!
>
>
> Thank you for fixing this, but it's already fixed in linux-next tree.
> See commit 05344a1d2ea7 ("media: atomisp: restore missing 'return'
> statement").
>
> Again, I am sorry for introducing this bug :(
>
>
>
>
> With regards,
> Pavel Skripkin

No worries, thanks for the update :D

-- 
Ammar Faizi

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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
  2021-10-02 23:17 [PATCH] media: atomisp: fix `-Werror=return-type` Ammar Faizi
  2021-10-03 16:19 ` Pavel Skripkin
@ 2021-10-04  9:05 ` Dan Carpenter
  2021-10-04 14:11     ` Ammar Faizi
  1 sibling, 1 reply; 8+ messages in thread
From: Dan Carpenter @ 2021-10-04  9:05 UTC (permalink / raw)
  To: Ammar Faizi
  Cc: Mauro Carvalho Chehab, Pavel Skripkin, Sakari Ailus, linux-media,
	linux-staging, linux-kernel, Bedirhan KURT

On Sun, Oct 03, 2021 at 06:17:23AM +0700, Ammar Faizi wrote:
> Bedirhan reported build error:
> ```
>   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
>   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
>    1649 | }
>         | ^
>   cc1: some warnings being treated as errors
>   make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
>   make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
>   make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
>   make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
>   make: *** [Makefile:1868: drivers] Error 2
> ```
> 
> Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> remove useless returns") incorrectly removed a required return results
> in the above build error. Reinstate it.
> 
> Cc: Pavel Skripkin <paskripkin@gmail.com>
> Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> Cc: linux-media@vger.kernel.org
> Cc: linux-staging@lists.linux.dev
> Cc: linux-kernel@vger.kernel.org
> Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>

What's going on with this?  It's like the seventh time people have sent
a fix for it?  Why are you not using against a current tree?

regards,
dan carpenter


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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
  2021-10-04  9:05 ` Dan Carpenter
@ 2021-10-04 14:11     ` Ammar Faizi
  0 siblings, 0 replies; 8+ messages in thread
From: Ammar Faizi @ 2021-10-04 14:11 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: Mauro Carvalho Chehab, Pavel Skripkin, Sakari Ailus, linux-media,
	linux-staging, linux-kernel, Bedirhan KURT

On Mon, Oct 4, 2021 at 4:06 PM Dan Carpenter <dan.carpenter@oracle.com> wrote:
>
> On Sun, Oct 03, 2021 at 06:17:23AM +0700, Ammar Faizi wrote:
> > Bedirhan reported build error:
> > ```
> >   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
> >   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
> >    1649 | }
> >         | ^
> >   cc1: some warnings being treated as errors
> >   make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
> >   make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
> >   make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
> >   make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
> >   make: *** [Makefile:1868: drivers] Error 2
> > ```
> >
> > Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> > remove useless returns") incorrectly removed a required return results
> > in the above build error. Reinstate it.
> >
> > Cc: Pavel Skripkin <paskripkin@gmail.com>
> > Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> > Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> > Cc: linux-media@vger.kernel.org
> > Cc: linux-staging@lists.linux.dev
> > Cc: linux-kernel@vger.kernel.org
> > Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> > Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> > Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
>
> What's going on with this?  It's like the seventh time people have sent
> a fix for it?  Why are you not using against a current tree?
>
> regards,
> dan carpenter
>

Sorry for the duplicate. It broke my build. I am using Linus' tree
5.15-rc4, the error still lives here. My mistake, I didn't check the
linux-next tree before sending this fix.

-- 
Ammar Faizi

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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
@ 2021-10-04 14:11     ` Ammar Faizi
  0 siblings, 0 replies; 8+ messages in thread
From: Ammar Faizi @ 2021-10-04 14:11 UTC (permalink / raw)
  To: Dan Carpenter
  Cc: Mauro Carvalho Chehab, Pavel Skripkin, Sakari Ailus, linux-media,
	linux-staging, linux-kernel, Bedirhan KURT

On Mon, Oct 4, 2021 at 4:06 PM Dan Carpenter <dan.carpenter@oracle.com> wrote:
>
> On Sun, Oct 03, 2021 at 06:17:23AM +0700, Ammar Faizi wrote:
> > Bedirhan reported build error:
> > ```
> >   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c: In function ‘input_system_configure_channel_sensor’:
> >   drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.c:1649:1: error: control reaches end of non-void function [-Werror=return-type]
> >    1649 | }
> >         | ^
> >   cc1: some warnings being treated as errors
> >   make[4]: *** [scripts/Makefile.build:277: drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o] Error 1
> >   make[3]: *** [scripts/Makefile.build:540: drivers/staging/media/atomisp] Error 2
> >   make[2]: *** [scripts/Makefile.build:540: drivers/staging/media] Error 2
> >   make[1]: *** [scripts/Makefile.build:540: drivers/staging] Error 2
> >   make: *** [Makefile:1868: drivers] Error 2
> > ```
> >
> > Commit 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp:
> > remove useless returns") incorrectly removed a required return results
> > in the above build error. Reinstate it.
> >
> > Cc: Pavel Skripkin <paskripkin@gmail.com>
> > Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
> > Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
> > Cc: linux-media@vger.kernel.org
> > Cc: linux-staging@lists.linux.dev
> > Cc: linux-kernel@vger.kernel.org
> > Reported-by: Bedirhan KURT <windowz414@gnuweeb.org>
> > Fixes: 264f590899146baa19e0ab5689e55fadbc292333 ("media: atomisp: remove useless returns")
> > Signed-off-by: Ammar Faizi <ammar.faizi@students.amikom.ac.id>
>
> What's going on with this?  It's like the seventh time people have sent
> a fix for it?  Why are you not using against a current tree?
>
> regards,
> dan carpenter
>

Sorry for the duplicate. It broke my build. I am using Linus' tree
5.15-rc4, the error still lives here. My mistake, I didn't check the
linux-next tree before sending this fix.

-- 
Ammar Faizi

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

* Re: [PATCH] media: atomisp: fix `-Werror=return-type`
  2021-10-04 14:11     ` Ammar Faizi
  (?)
@ 2021-10-04 14:41     ` Dan Carpenter
  -1 siblings, 0 replies; 8+ messages in thread
From: Dan Carpenter @ 2021-10-04 14:41 UTC (permalink / raw)
  To: Ammar Faizi, Mauro Carvalho Chehab
  Cc: Pavel Skripkin, Sakari Ailus, linux-media, linux-staging,
	linux-kernel, Bedirhan KURT

On Mon, Oct 04, 2021 at 09:11:00PM +0700, Ammar Faizi wrote:
> 
> Sorry for the duplicate. It broke my build. I am using Linus' tree
> 5.15-rc4, the error still lives here. My mistake, I didn't check the
> linux-next tree before sending this fix.

Mauro,

Can you please send commit bbe54b1a75a3 ("media: atomisp: restore
missing 'return' statement") to Linus for v5.15.  Otherwise we're in
for a world of hurt...

regards,
dan carpenter


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

end of thread, other threads:[~2021-10-04 14:42 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-02 23:17 [PATCH] media: atomisp: fix `-Werror=return-type` Ammar Faizi
2021-10-03 16:19 ` Pavel Skripkin
2021-10-03 23:24   ` Ammar Faizi
2021-10-03 23:24     ` Ammar Faizi
2021-10-04  9:05 ` Dan Carpenter
2021-10-04 14:11   ` Ammar Faizi
2021-10-04 14:11     ` Ammar Faizi
2021-10-04 14:41     ` Dan Carpenter

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.