Linux Media Controller development
 help / color / mirror / Atom feed
* [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion
@ 2014-12-29 14:29 Fabian Frederick
  2014-12-29 14:29 ` [PATCH 05/11 linux-next] [media] tw68: " Fabian Frederick
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, openipmi-developer,
	linux-input, linux-media, linux-arm-kernel, linux-s390

This small patchset removes unnecessary version.h includes detected by
versioncheck in drivers branch.

Fabian Frederick (11):
  rsxx: remove unnecessary version.h inclusion
  skd: remove unnecessary version.h inclusion
  ipmi: remove unnecessary version.h inclusion
  input: remove unnecessary version.h inclusion
  [media] tw68: remove unnecessary version.h inclusion
  [media] s5p-g2d: remove unnecessary version.h inclusion
  [media] s5p-mfc: remove unnecessary version.h inclusion
  [media] vivid: remove unnecessary version.h inclusion
  [media] uvcvideo: remove unnecessary version.h inclusion
  GenWQE: remove unnecessary version.h inclusion
  s390/hmcdrv: remove unnecessary version.h inclusion

 drivers/block/rsxx/rsxx_priv.h               | 1 -
 drivers/block/skd_main.c                     | 1 -
 drivers/char/ipmi/ipmi_ssif.c                | 1 -
 drivers/input/touchscreen/elants_i2c.c       | 2 --
 drivers/media/pci/tw68/tw68.h                | 1 -
 drivers/media/platform/s5p-g2d/g2d.c         | 1 -
 drivers/media/platform/s5p-mfc/s5p_mfc_dec.c | 1 -
 drivers/media/platform/s5p-mfc/s5p_mfc_enc.c | 1 -
 drivers/media/platform/vivid/vivid-tpg.h     | 1 -
 drivers/media/usb/uvc/uvc_v4l2.c             | 1 -
 drivers/misc/genwqe/card_base.h              | 1 -
 drivers/misc/genwqe/card_sysfs.c             | 1 -
 drivers/s390/char/hmcdrv_mod.c               | 1 -
 13 files changed, 14 deletions(-)

-- 
2.1.0


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

* [PATCH 05/11 linux-next] [media] tw68: remove unnecessary version.h inclusion
  2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
@ 2014-12-29 14:29 ` Fabian Frederick
  2014-12-29 14:29 ` [PATCH 06/11 linux-next] [media] s5p-g2d: " Fabian Frederick
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, Hans Verkuil,
	Mauro Carvalho Chehab, linux-media

Based on versioncheck.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/media/pci/tw68/tw68.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/pci/tw68/tw68.h b/drivers/media/pci/tw68/tw68.h
index 7a7501b..93f2335 100644
--- a/drivers/media/pci/tw68/tw68.h
+++ b/drivers/media/pci/tw68/tw68.h
@@ -25,7 +25,6 @@
  *  GNU General Public License for more details.
  */
 
-#include <linux/version.h>
 #include <linux/pci.h>
 #include <linux/videodev2.h>
 #include <linux/notifier.h>
-- 
2.1.0


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

* [PATCH 06/11 linux-next] [media] s5p-g2d: remove unnecessary version.h inclusion
  2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
  2014-12-29 14:29 ` [PATCH 05/11 linux-next] [media] tw68: " Fabian Frederick
@ 2014-12-29 14:29 ` Fabian Frederick
  2014-12-29 14:29 ` [PATCH 07/11 linux-next] [media] s5p-mfc: " Fabian Frederick
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, Kyungmin Park, Kamil Debski,
	Mauro Carvalho Chehab, linux-arm-kernel, linux-media

Based on versioncheck.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/media/platform/s5p-g2d/g2d.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/platform/s5p-g2d/g2d.c b/drivers/media/platform/s5p-g2d/g2d.c
index 47ba8fb..ec3e124 100644
--- a/drivers/media/platform/s5p-g2d/g2d.c
+++ b/drivers/media/platform/s5p-g2d/g2d.c
@@ -12,7 +12,6 @@
 
 #include <linux/module.h>
 #include <linux/fs.h>
-#include <linux/version.h>
 #include <linux/timer.h>
 #include <linux/sched.h>
 #include <linux/slab.h>
-- 
2.1.0


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

* [PATCH 07/11 linux-next] [media] s5p-mfc: remove unnecessary version.h inclusion
  2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
  2014-12-29 14:29 ` [PATCH 05/11 linux-next] [media] tw68: " Fabian Frederick
  2014-12-29 14:29 ` [PATCH 06/11 linux-next] [media] s5p-g2d: " Fabian Frederick
@ 2014-12-29 14:29 ` Fabian Frederick
  2014-12-29 14:29 ` [PATCH 08/11 linux-next] [media] vivid: " Fabian Frederick
  2014-12-29 14:29 ` [PATCH 09/11 linux-next] [media] uvcvideo: " Fabian Frederick
  4 siblings, 0 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, Kyungmin Park, Kamil Debski,
	Jeongtae Park, Mauro Carvalho Chehab, linux-arm-kernel,
	linux-media

Based on versioncheck.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/media/platform/s5p-mfc/s5p_mfc_dec.c | 1 -
 drivers/media/platform/s5p-mfc/s5p_mfc_enc.c | 1 -
 2 files changed, 2 deletions(-)

diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_dec.c b/drivers/media/platform/s5p-mfc/s5p_mfc_dec.c
index c6c3452..a9ef843 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_dec.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_dec.c
@@ -18,7 +18,6 @@
 #include <linux/platform_device.h>
 #include <linux/sched.h>
 #include <linux/slab.h>
-#include <linux/version.h>
 #include <linux/videodev2.h>
 #include <linux/workqueue.h>
 #include <media/v4l2-ctrls.h>
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
index bd64f1d..68df3cd 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
@@ -19,7 +19,6 @@
 #include <linux/module.h>
 #include <linux/platform_device.h>
 #include <linux/sched.h>
-#include <linux/version.h>
 #include <linux/videodev2.h>
 #include <media/v4l2-event.h>
 #include <linux/workqueue.h>
-- 
2.1.0


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

* [PATCH 08/11 linux-next] [media] vivid: remove unnecessary version.h inclusion
  2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
                   ` (2 preceding siblings ...)
  2014-12-29 14:29 ` [PATCH 07/11 linux-next] [media] s5p-mfc: " Fabian Frederick
@ 2014-12-29 14:29 ` Fabian Frederick
  2014-12-29 14:29 ` [PATCH 09/11 linux-next] [media] uvcvideo: " Fabian Frederick
  4 siblings, 0 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, Hans Verkuil,
	Mauro Carvalho Chehab, linux-media

Based on versioncheck.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/media/platform/vivid/vivid-tpg.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/platform/vivid/vivid-tpg.h b/drivers/media/platform/vivid/vivid-tpg.h
index 9dc463a4..bd8b1c7 100644
--- a/drivers/media/platform/vivid/vivid-tpg.h
+++ b/drivers/media/platform/vivid/vivid-tpg.h
@@ -20,7 +20,6 @@
 #ifndef _VIVID_TPG_H_
 #define _VIVID_TPG_H_
 
-#include <linux/version.h>
 #include <linux/types.h>
 #include <linux/errno.h>
 #include <linux/random.h>
-- 
2.1.0


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

* [PATCH 09/11 linux-next] [media] uvcvideo: remove unnecessary version.h inclusion
  2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
                   ` (3 preceding siblings ...)
  2014-12-29 14:29 ` [PATCH 08/11 linux-next] [media] vivid: " Fabian Frederick
@ 2014-12-29 14:29 ` Fabian Frederick
  2014-12-29 23:42   ` Laurent Pinchart
  4 siblings, 1 reply; 8+ messages in thread
From: Fabian Frederick @ 2014-12-29 14:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Greg Kroah-Hartman, Fabian Frederick, Laurent Pinchart,
	Mauro Carvalho Chehab, linux-media

Based on versioncheck.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 drivers/media/usb/uvc/uvc_v4l2.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/media/usb/uvc/uvc_v4l2.c
index 9c5cbcf..43e953f 100644
--- a/drivers/media/usb/uvc/uvc_v4l2.c
+++ b/drivers/media/usb/uvc/uvc_v4l2.c
@@ -13,7 +13,6 @@
 
 #include <linux/compat.h>
 #include <linux/kernel.h>
-#include <linux/version.h>
 #include <linux/list.h>
 #include <linux/module.h>
 #include <linux/slab.h>
-- 
2.1.0


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

* Re: [PATCH 09/11 linux-next] [media] uvcvideo: remove unnecessary version.h inclusion
  2014-12-29 14:29 ` [PATCH 09/11 linux-next] [media] uvcvideo: " Fabian Frederick
@ 2014-12-29 23:42   ` Laurent Pinchart
  2014-12-30 10:06     ` Fabian Frederick
  0 siblings, 1 reply; 8+ messages in thread
From: Laurent Pinchart @ 2014-12-29 23:42 UTC (permalink / raw)
  To: Fabian Frederick
  Cc: linux-kernel, Greg Kroah-Hartman, Mauro Carvalho Chehab,
	linux-media

Hi Fabian,

Thank you for the patch.

On Monday 29 December 2014 15:29:43 Fabian Frederick wrote:
> Based on versioncheck.
> 
> Signed-off-by: Fabian Frederick <fabf@skynet.be>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Should I take the patch in my tree or do you plan to send a pull request for 
the whole series elsewhere ?

> ---
>  drivers/media/usb/uvc/uvc_v4l2.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/media/usb/uvc/uvc_v4l2.c
> b/drivers/media/usb/uvc/uvc_v4l2.c index 9c5cbcf..43e953f 100644
> --- a/drivers/media/usb/uvc/uvc_v4l2.c
> +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> @@ -13,7 +13,6 @@
> 
>  #include <linux/compat.h>
>  #include <linux/kernel.h>
> -#include <linux/version.h>
>  #include <linux/list.h>
>  #include <linux/module.h>
>  #include <linux/slab.h>

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH 09/11 linux-next] [media] uvcvideo: remove unnecessary version.h inclusion
  2014-12-29 23:42   ` Laurent Pinchart
@ 2014-12-30 10:06     ` Fabian Frederick
  0 siblings, 0 replies; 8+ messages in thread
From: Fabian Frederick @ 2014-12-30 10:06 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: linux-media, Greg Kroah-Hartman, linux-kernel,
	Mauro Carvalho Chehab



> On 30 December 2014 at 00:42 Laurent Pinchart
> <laurent.pinchart@ideasonboard.com> wrote:
>
>
> Hi Fabian,
>
> Thank you for the patch.
>
> On Monday 29 December 2014 15:29:43 Fabian Frederick wrote:
> > Based on versioncheck.
> >
> > Signed-off-by: Fabian Frederick <fabf@skynet.be>
>
> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
> Should I take the patch in my tree or do you plan to send a pull request for
> the whole series elsewhere ?
>
> > ---
> >  drivers/media/usb/uvc/uvc_v4l2.c | 1 -
> >  1 file changed, 1 deletion(-)
> >
> > diff --git a/drivers/media/usb/uvc/uvc_v4l2.c
> > b/drivers/media/usb/uvc/uvc_v4l2.c index 9c5cbcf..43e953f 100644
> > --- a/drivers/media/usb/uvc/uvc_v4l2.c
> > +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> > @@ -13,7 +13,6 @@
> >
> >  #include <linux/compat.h>
> >  #include <linux/kernel.h>
> > -#include <linux/version.h>
> >  #include <linux/list.h>
> >  #include <linux/module.h>
> >  #include <linux/slab.h>
>
> --
> Regards,
>
> Laurent Pinchart
>
Hi Laurent,

        Thanks for the ack, you can take the patch.
       
(Maybe Greg will try later to apply the whole patchset on linux-next.
It should not be a problem if some of them are already in.)

Regards,
Fabian

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

end of thread, other threads:[~2014-12-30 10:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-29 14:29 [PATCH 00/11 linux-next] drivers: remove unnecessary version.h inclusion Fabian Frederick
2014-12-29 14:29 ` [PATCH 05/11 linux-next] [media] tw68: " Fabian Frederick
2014-12-29 14:29 ` [PATCH 06/11 linux-next] [media] s5p-g2d: " Fabian Frederick
2014-12-29 14:29 ` [PATCH 07/11 linux-next] [media] s5p-mfc: " Fabian Frederick
2014-12-29 14:29 ` [PATCH 08/11 linux-next] [media] vivid: " Fabian Frederick
2014-12-29 14:29 ` [PATCH 09/11 linux-next] [media] uvcvideo: " Fabian Frederick
2014-12-29 23:42   ` Laurent Pinchart
2014-12-30 10:06     ` Fabian Frederick

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox