brcm63xx: rename target to bcm63xx
[openwrt/staging/wigyori.git] / target / linux / brcm2708 / patches-4.19 / 950-0202-staging-bcm2835-camera-Move-module-info-to-the-end.patch
1 From 3e8dfb23cfab3003ff83f4d32568ae4e38536572 Mon Sep 17 00:00:00 2001
2 From: Stefan Wahren <stefan.wahren@i2se.com>
3 Date: Sat, 20 Oct 2018 19:31:00 +0200
4 Subject: [PATCH] staging: bcm2835-camera: Move module info to the end
5
6 In order to have this more consistent between the vc04 services move
7 the module information to the end of the file.
8
9 Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
10 ---
11 .../vc04_services/bcm2835-camera/bcm2835-camera.c | 12 ++++++------
12 1 file changed, 6 insertions(+), 6 deletions(-)
13
14 --- a/drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c
15 +++ b/drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c
16 @@ -43,12 +43,6 @@
17
18 #define MAX_BCM2835_CAMERAS 2
19
20 -MODULE_DESCRIPTION("Broadcom 2835 MMAL video capture");
21 -MODULE_AUTHOR("Vincent Sanders");
22 -MODULE_LICENSE("GPL");
23 -MODULE_VERSION(BM2835_MMAL_VERSION);
24 -MODULE_ALIAS("platform:bcm2835-camera");
25 -
26 int bcm2835_v4l2_debug;
27 module_param_named(debug, bcm2835_v4l2_debug, int, 0644);
28 MODULE_PARM_DESC(bcm2835_v4l2_debug, "Debug level 0-2");
29 @@ -1989,3 +1983,9 @@ static struct platform_driver bcm2835_ca
30 };
31
32 module_platform_driver(bcm2835_camera_driver)
33 +
34 +MODULE_DESCRIPTION("Broadcom 2835 MMAL video capture");
35 +MODULE_AUTHOR("Vincent Sanders");
36 +MODULE_LICENSE("GPL");
37 +MODULE_VERSION(BM2835_MMAL_VERSION);
38 +MODULE_ALIAS("platform:bcm2835-camera");