PEL: Const flattens for the SRC sub classes

Make the flatten functions const for the various classes
that represent the SRC substructures.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I08f4ae6de65e269c9f1b82315115969c8552c782
diff --git a/extensions/openpower-pels/ascii_string.cpp b/extensions/openpower-pels/ascii_string.cpp
index 4bfc9cf..124bd0c 100644
--- a/extensions/openpower-pels/ascii_string.cpp
+++ b/extensions/openpower-pels/ascii_string.cpp
@@ -65,7 +65,7 @@
     }
 }
 
-void AsciiString::flatten(Stream& stream)
+void AsciiString::flatten(Stream& stream) const
 {
     stream.write(_string.data(), _string.size());
 }