mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-11 16:56:40 +07:00
[media] ivtv,cx18: Use default version control for VIDIOC_QUERYCAP
After discussing with Andy Walls on irc, we've agreed that this is the best thing to do. No regressions will be introduced, as 3.x.y is greater then the current versions for cx18 and ivtv. Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
880c35c585
commit
3c2d464ee8
@ -25,7 +25,6 @@
|
||||
#ifndef CX18_DRIVER_H
|
||||
#define CX18_DRIVER_H
|
||||
|
||||
#include <linux/version.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/init.h>
|
||||
|
@ -469,7 +469,6 @@ static int cx18_querycap(struct file *file, void *fh,
|
||||
strlcpy(vcap->card, cx->card_name, sizeof(vcap->card));
|
||||
snprintf(vcap->bus_info, sizeof(vcap->bus_info),
|
||||
"PCI:%s", pci_name(cx->pci_dev));
|
||||
vcap->version = CX18_DRIVER_VERSION; /* version */
|
||||
vcap->capabilities = cx->v4l2_cap; /* capabilities */
|
||||
return 0;
|
||||
}
|
||||
|
@ -23,12 +23,6 @@
|
||||
#define CX18_VERSION_H
|
||||
|
||||
#define CX18_DRIVER_NAME "cx18"
|
||||
#define CX18_DRIVER_VERSION_MAJOR 1
|
||||
#define CX18_DRIVER_VERSION_MINOR 5
|
||||
#define CX18_DRIVER_VERSION_PATCHLEVEL 0
|
||||
|
||||
#define CX18_VERSION __stringify(CX18_DRIVER_VERSION_MAJOR) "." __stringify(CX18_DRIVER_VERSION_MINOR) "." __stringify(CX18_DRIVER_VERSION_PATCHLEVEL)
|
||||
#define CX18_DRIVER_VERSION KERNEL_VERSION(CX18_DRIVER_VERSION_MAJOR, \
|
||||
CX18_DRIVER_VERSION_MINOR, CX18_DRIVER_VERSION_PATCHLEVEL)
|
||||
#define CX18_VERSION "1.5.1"
|
||||
|
||||
#endif
|
||||
|
@ -36,7 +36,6 @@
|
||||
* using information provided by Jiun-Kuei Jung @ AVerMedia.
|
||||
*/
|
||||
|
||||
#include <linux/version.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/delay.h>
|
||||
|
@ -757,7 +757,6 @@ static int ivtv_querycap(struct file *file, void *fh, struct v4l2_capability *vc
|
||||
strlcpy(vcap->driver, IVTV_DRIVER_NAME, sizeof(vcap->driver));
|
||||
strlcpy(vcap->card, itv->card_name, sizeof(vcap->card));
|
||||
snprintf(vcap->bus_info, sizeof(vcap->bus_info), "PCI:%s", pci_name(itv->pdev));
|
||||
vcap->version = IVTV_DRIVER_VERSION; /* version */
|
||||
vcap->capabilities = itv->v4l2_cap; /* capabilities */
|
||||
return 0;
|
||||
}
|
||||
|
@ -21,11 +21,6 @@
|
||||
#define IVTV_VERSION_H
|
||||
|
||||
#define IVTV_DRIVER_NAME "ivtv"
|
||||
#define IVTV_DRIVER_VERSION_MAJOR 1
|
||||
#define IVTV_DRIVER_VERSION_MINOR 4
|
||||
#define IVTV_DRIVER_VERSION_PATCHLEVEL 2
|
||||
|
||||
#define IVTV_VERSION __stringify(IVTV_DRIVER_VERSION_MAJOR) "." __stringify(IVTV_DRIVER_VERSION_MINOR) "." __stringify(IVTV_DRIVER_VERSION_PATCHLEVEL)
|
||||
#define IVTV_DRIVER_VERSION KERNEL_VERSION(IVTV_DRIVER_VERSION_MAJOR,IVTV_DRIVER_VERSION_MINOR,IVTV_DRIVER_VERSION_PATCHLEVEL)
|
||||
#define IVTV_VERSION "1.4.3"
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user