From: Omar Ramirez Luna Date: Thu, 16 Aug 2012 23:33:26 +0000 (-0500) Subject: staging: tidspbridge: fix uuid strings X-Git-Tag: omap-for-v3.7-rc1/fixes-cpufreq-signed~75^2~900 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=424d56ec3ca0ea5a4cc4caad885d8e49a3cfafc8;p=pandora-kernel.git staging: tidspbridge: fix uuid strings Commit 8cb05f4b54535cb91d7a5f9f8eb230bd4fa86e4e (staging: tidspbridge: eliminate uuid_uuid_to_string), not only broke compilation but also functionality for tidspbridge driver. So: - Replace remaining instances of uuid_uuid_to_string with snprintf to fix compilation. - Fix the format from %pU to %pUL. - Since these UUIDs are used in the firmware to reference section names, the firmware doesn't follow the standard uuid delimiter '-' it uses '_' instead. The driver can follow the standard convention however for dsp sections we must transform the uuid to what is expected by the firmware. E.g.: tidspbridge sees: 24BC8D90-BB45-11D4-B756-006008BDB66F firmware expects: .24BC8D90_BB45_11D4_B756_006008BDB66F Signed-off-by: Omar Ramirez Luna CC: Andy Shevchenko Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed