1
0
Fork 0

media: media.h: remove linux/version.h include

The media.h public header is one of only three public headers that include
linux/version.h. Drop it from media.h. It was only used for an obsolete
define.

It has to be added to media-device.c, since that source relied on media.h
to include it.

Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
hifive-unleashed-5.1
Hans Verkuil 2018-07-25 08:51:39 -04:00 committed by Mauro Carvalho Chehab
parent 43bd1dce39
commit 87e1a881e1
2 changed files with 2 additions and 2 deletions

View File

@ -25,6 +25,7 @@
#include <linux/types.h>
#include <linux/pci.h>
#include <linux/usb.h>
#include <linux/version.h>
#include <media/media-device.h>
#include <media/media-devnode.h>

View File

@ -25,7 +25,6 @@
#endif
#include <linux/ioctl.h>
#include <linux/types.h>
#include <linux/version.h>
struct media_device_info {
char driver[16];
@ -421,7 +420,7 @@ struct media_v2_topology {
#define MEDIA_INTF_T_ALSA_TIMER (MEDIA_INTF_T_ALSA_BASE + 7)
/* Obsolete symbol for media_version, no longer used in the kernel */
#define MEDIA_API_VERSION KERNEL_VERSION(0, 1, 0)
#define MEDIA_API_VERSION ((0 << 16) | (1 << 8) | 0)
#endif