staging: bcm2835-codec: Fix declaration of roles
authorKieran Bingham <kieran.bingham@ideasonboard.com>
Wed, 20 Mar 2019 11:42:39 +0000 (11:42 +0000)
committerpopcornmix <popcornmix@gmail.com>
Wed, 1 Jul 2020 15:33:05 +0000 (16:33 +0100)
The static role text is declared incorrectly. The static should be
first, and the roles should also be constified.

Convert from "const static char *" to "static const char * const".

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
drivers/staging/vc04_services/bcm2835-codec/bcm2835-v4l2-codec.c

index 4c69087..1a00c8d 100644 (file)
@@ -77,7 +77,7 @@ enum bcm2835_codec_role {
        ISP,
 };
 
-const static char *roles[] = {
+static const char * const roles[] = {
        "decode",
        "encode",
        "isp"