]> git.ipfire.org Git - people/ms/linux.git/commitdiff
counter: ftm-quaddec: Add const qualifier for actions_list array
authorWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Wed, 9 Jun 2021 01:31:16 +0000 (10:31 +0900)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 9 Jun 2021 15:27:58 +0000 (16:27 +0100)
The struct counter_synapse actions_list member expects a const enum
counter_synapse_action array. This patch adds the const qualifier to the
ftm_quaddec_synapse_actions to match actions_list.

Cc: Patrick Havelange <patrick.havelange@essensium.com>
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Link: https://lore.kernel.org/r/db1df2021efb1b98e6d1a50787be5a52a1896574.1623201081.git.vilhelm.gray@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/counter/ftm-quaddec.c

index c2b3fdfd8b7721980dcc3c6d03ca6dc6dfe194a9..9371532406ca282ed804d0ea314dd4c596cd5f80 100644 (file)
@@ -162,7 +162,7 @@ enum ftm_quaddec_synapse_action {
        FTM_QUADDEC_SYNAPSE_ACTION_BOTH_EDGES,
 };
 
-static enum counter_synapse_action ftm_quaddec_synapse_actions[] = {
+static const enum counter_synapse_action ftm_quaddec_synapse_actions[] = {
        [FTM_QUADDEC_SYNAPSE_ACTION_BOTH_EDGES] =
        COUNTER_SYNAPSE_ACTION_BOTH_EDGES
 };