am e6adde40: Merge "Shorten dumpsys media.audio_flinger output" into jb-dev

* commit 'e6adde403480333b613452ae0df442df9da4a5b2':
  Shorten dumpsys media.audio_flinger output
diff --git a/services/audioflinger/FastMixer.cpp b/services/audioflinger/FastMixer.cpp
index 3bb7b44..3fe50dc 100644
--- a/services/audioflinger/FastMixer.cpp
+++ b/services/audioflinger/FastMixer.cpp
@@ -588,6 +588,10 @@
 
 void FastMixerDumpState::dump(int fd)
 {
+    if (mCommand == FastMixerState::INITIAL) {
+        fdprintf(fd, "FastMixer not initialized\n");
+        return;
+    }
 #define COMMAND_MAX 32
     char string[COMMAND_MAX];
     switch (mCommand) {