Re: [PATCH V2] media: uvcvideo: Remove unused including <linux/version.h>
From: Randy Dunlap <hidden>
Date: 2021-07-27 20:50:39
Also in:
linux-media, lkml
From: Randy Dunlap <hidden>
Date: 2021-07-27 20:50:39
Also in:
linux-media, lkml
On 7/27/21 2:28 AM, Cai Huoqing wrote:
Remove including <linux/version.h> that don't need it. V1->V2: Split the patch in two. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Cai Huoqing <redacted>
as reported by 'make versioncheck': ../drivers/media/usb/uvc/uvc_driver.c: 19 linux/version.h not needed. Acked-by: Randy Dunlap <redacted> thanks.
--- drivers/media/usb/uvc/uvc_driver.c | 1 - 1 file changed, 1 deletion(-)diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c index 9a791d8ef200..b1b055784f8d 100644 --- a/drivers/media/usb/uvc/uvc_driver.c +++ b/drivers/media/usb/uvc/uvc_driver.c@@ -16,7 +16,6 @@ #include <linux/videodev2.h> #include <linux/vmalloc.h> #include <linux/wait.h> -#include <linux/version.h> #include <asm/unaligned.h> #include <media/v4l2-common.h>
-- ~Randy