]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: bcm2835-audio: unify FOURCC command definitions
authorNicolas Saenz Julienne <nsaenzjulienne@suse.de>
Wed, 17 Oct 2018 19:01:50 +0000 (21:01 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 7 Nov 2018 11:38:15 +0000 (12:38 +0100)
The device communicates with the audio core using FOURCC codes. The
driver was generating them using different macros/expressions. We now
use the same macro to create them and centralize all the definitions.

Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Acked-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/bcm2835-audio/bcm2835-vchiq.c
drivers/staging/vc04_services/bcm2835-audio/vc_vchi_audioserv_defs.h

index 781754f36da732d8cc0f98f7c4340c8a909e3933..aca7008e1921bf7b15df5776b24e8c9d296b6998 100644 (file)
@@ -89,11 +89,6 @@ static int bcm2835_audio_send_simple(struct bcm2835_audio_instance *instance,
        return bcm2835_audio_send_msg(instance, &m, wait);
 }
 
-static const u32 BCM2835_AUDIO_WRITE_COOKIE1 = ('B' << 24 | 'C' << 16 |
-                                               'M' << 8  | 'A');
-static const u32 BCM2835_AUDIO_WRITE_COOKIE2 = ('D' << 24 | 'A' << 16 |
-                                               'T' << 8  | 'A');
-
 static void audio_vchi_callback(void *param,
                                const VCHI_CALLBACK_REASON_T reason,
                                void *msg_handle)
@@ -112,8 +107,8 @@ static void audio_vchi_callback(void *param,
                instance->result = m.u.result.success;
                complete(&instance->msg_avail_comp);
        } else if (m.type == VC_AUDIO_MSG_TYPE_COMPLETE) {
-               if (m.u.complete.cookie1 != BCM2835_AUDIO_WRITE_COOKIE1 ||
-                   m.u.complete.cookie2 != BCM2835_AUDIO_WRITE_COOKIE2)
+               if (m.u.complete.cookie1 != VC_AUDIO_WRITE_COOKIE1 ||
+                   m.u.complete.cookie2 != VC_AUDIO_WRITE_COOKIE2)
                        dev_err(instance->dev, "invalid cookie\n");
                else
                        bcm2835_playback_fifo(instance->alsa_stream,
@@ -329,8 +324,8 @@ int bcm2835_audio_write(struct bcm2835_alsa_stream *alsa_stream,
                .type = VC_AUDIO_MSG_TYPE_WRITE,
                .u.write.count = size,
                .u.write.max_packet = instance->max_packet,
-               .u.write.cookie1 = BCM2835_AUDIO_WRITE_COOKIE1,
-               .u.write.cookie2 = BCM2835_AUDIO_WRITE_COOKIE2,
+               .u.write.cookie1 = VC_AUDIO_WRITE_COOKIE1,
+               .u.write.cookie2 = VC_AUDIO_WRITE_COOKIE2,
        };
        unsigned int count;
        int err, status;
index 1a7f0884ac9ce61aa79c83eed584934060d0f8d1..dc62875cfdcabf9c60fc23746be1ac4fec568967 100644 (file)
@@ -7,8 +7,10 @@
 #define VC_AUDIOSERV_MIN_VER 1
 #define VC_AUDIOSERV_VER 2
 
-/* FourCC code used for VCHI connection */
+/* FourCC codes used for VCHI communication */
 #define VC_AUDIO_SERVER_NAME  MAKE_FOURCC("AUDS")
+#define VC_AUDIO_WRITE_COOKIE1 MAKE_FOURCC("BCMA")
+#define VC_AUDIO_WRITE_COOKIE2 MAKE_FOURCC("DATA")
 
 /*
  *  List of screens that are currently supported