mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 11:40:19 -04:00
staging: vc04_services: remove unneeded MODULE_VERSION() usage
MODULE_VERSION() is useless for in-tree drivers given that only the kernel version matters. Hence, remove it. While at it, one realignment was made to improve readability. Suggested by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Gaston Gonzalez <gascoar@gmail.com> Link: https://lore.kernel.org/r/20220107234620.49900-2-gascoar@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a0c1fe1870
commit
c03de260d6
@@ -33,7 +33,6 @@
|
||||
#include "mmal-parameters.h"
|
||||
#include "bcm2835-camera.h"
|
||||
|
||||
#define BM2835_MMAL_VERSION "0.0.2"
|
||||
#define BM2835_MMAL_MODULE_NAME "bcm2835-v4l2"
|
||||
#define MIN_WIDTH 32
|
||||
#define MIN_HEIGHT 32
|
||||
@@ -1954,9 +1953,7 @@ static int bcm2835_mmal_probe(struct platform_device *pdev)
|
||||
goto unreg_dev;
|
||||
}
|
||||
|
||||
v4l2_info(&dev->v4l2_dev,
|
||||
"Broadcom 2835 MMAL video capture ver %s loaded.\n",
|
||||
BM2835_MMAL_VERSION);
|
||||
v4l2_info(&dev->v4l2_dev, "Broadcom 2835 MMAL video capture loaded.\n");
|
||||
|
||||
gdev[camera] = dev;
|
||||
}
|
||||
@@ -2008,5 +2005,4 @@ module_platform_driver(bcm2835_camera_driver)
|
||||
MODULE_DESCRIPTION("Broadcom 2835 MMAL video capture");
|
||||
MODULE_AUTHOR("Vincent Sanders");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(BM2835_MMAL_VERSION);
|
||||
MODULE_ALIAS("platform:bcm2835-camera");
|
||||
|
||||
Reference in New Issue
Block a user