[0/1] Implement a DVB Dummy Tuner

Message ID 20200109152408.919325-1-dwlsalmeida@gmail.com (mailing list archive)
Headers
Series Implement a DVB Dummy Tuner |

Message

Daniel Almeida Jan. 9, 2020, 3:24 p.m. UTC
  From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>

This patch series should implement a dummy DVB tuner as part of ongoing work
on a virtual DVB test driver under the 2020 Spring Linux Kernel Mentorship Program.

as 
Daniel W. S. Almeida (1):
  media: dvb_dummy_tuner: implement driver skeleton

 drivers/media/tuners/Kconfig           |   7 ++
 drivers/media/tuners/Makefile          |   1 +
 drivers/media/tuners/dvb_dummy_tuner.c | 153 +++++++++++++++++++++++++
 drivers/media/tuners/dvb_dummy_tuner.h |  20 ++++
 4 files changed, 181 insertions(+)
 create mode 100644 drivers/media/tuners/dvb_dummy_tuner.c
 create mode 100644 drivers/media/tuners/dvb_dummy_tuner.h
  

Comments

Mauro Carvalho Chehab Jan. 9, 2020, 4:07 p.m. UTC | #1
Em Thu,  9 Jan 2020 12:24:07 -0300
"Daniel W. S. Almeida" <dwlsalmeida@gmail.com> escreveu:

> From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>
> 
> This patch series should implement a dummy DVB tuner as part of ongoing work
> on a virtual DVB test driver under the 2020 Spring Linux Kernel Mentorship Program.

No need for a patch 0/1. If you want to send just one patch, just sent it
directly as:

	[PATCH] foo

> 
> as 
> Daniel W. S. Almeida (1):
>   media: dvb_dummy_tuner: implement driver skeleton
> 
>  drivers/media/tuners/Kconfig           |   7 ++
>  drivers/media/tuners/Makefile          |   1 +
>  drivers/media/tuners/dvb_dummy_tuner.c | 153 +++++++++++++++++++++++++
>  drivers/media/tuners/dvb_dummy_tuner.h |  20 ++++
>  4 files changed, 181 insertions(+)
>  create mode 100644 drivers/media/tuners/dvb_dummy_tuner.c
>  create mode 100644 drivers/media/tuners/dvb_dummy_tuner.h
> 




Cheers,
Mauro
  
Daniel Almeida Jan. 9, 2020, 8:51 p.m. UTC | #2
Hi Mauro!


> No need for a patch 0/1. If you want to send just one patch, just sent it
> directly as:
>
> 	[PATCH] foo

I planned on adding more commits to this series in v2, v3 and so forth 
so they would be applied in order, since they would be touching the same 
file. Likewise, the changes could be reviewed in a piecemeal fashion 
making it easier for reviewers. Is this not advisable?

Anyway, thanks for the heads up.


- Daniel.