]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ALSA: mts64: More constifications
authorTakashi Iwai <tiwai@suse.de>
Sun, 5 Jan 2020 14:48:08 +0000 (15:48 +0100)
committerTakashi Iwai <tiwai@suse.de>
Sun, 5 Jan 2020 15:15:06 +0000 (16:15 +0100)
Apply const prefix to the static mapping tables.

Just for minor optimization and no functional changes.

Link: https://lore.kernel.org/r/20200105144823.29547-54-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/drivers/mts64.c

index eeef3c0215e4126d8aabb3eb65ebb56f9f796aa3..9c708b693cb330b42ede0ffbf6cb37519c4d4f67 100644 (file)
@@ -261,7 +261,7 @@ static int mts64_device_close(struct mts64 *mts)
  */
 static u8 mts64_map_midi_input(u8 c)
 {
-       static u8 map[] = { 0, 1, 4, 2, 3 };
+       static const u8 map[] = { 0, 1, 4, 2, 3 };
 
        return map[c];
 }
@@ -353,7 +353,7 @@ static void mts64_smpte_start(struct parport *p,
                              u8 seconds, u8 frames,
                              u8 idx)
 {
-       static u8 fps[5] = { MTS64_CMD_SMPTE_FPS_24, 
+       static const u8 fps[5] = { MTS64_CMD_SMPTE_FPS_24,
                             MTS64_CMD_SMPTE_FPS_25,
                             MTS64_CMD_SMPTE_FPS_2997, 
                             MTS64_CMD_SMPTE_FPS_30D,