diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-09-28 15:54:45 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2016-09-30 12:47:05 -0700 |
commit | ff2dcd9af994a23ed483939a416b48bdc10eefd5 (patch) | |
tree | 6e5a0dfe4e39c407eea7e39840eef5d56b720de4 /trusty | |
parent | 66ce3e08c5632a20ea66bde6dd76397041edf034 (diff) | |
download | core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.gz core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.tar.bz2 core-ff2dcd9af994a23ed483939a416b48bdc10eefd5.zip |
system/core Replace log/log.h with android/log.h
Should use android/log.h instead of log/log.h as a good example
to all others. Adjust header order to comply with Android Coding
standards.
Test: Compile
Bug: 26552300
Bug: 31289077
Change-Id: I33a8fb4e754d2dc4754d335660c450e0a67190fc
Diffstat (limited to 'trusty')
-rw-r--r-- | trusty/nvram/trusty_nvram_implementation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/trusty/nvram/trusty_nvram_implementation.cpp b/trusty/nvram/trusty_nvram_implementation.cpp index 041c1bd3a..caa25abf7 100644 --- a/trusty/nvram/trusty_nvram_implementation.cpp +++ b/trusty/nvram/trusty_nvram_implementation.cpp @@ -14,17 +14,17 @@ * limitations under the License. */ +#define LOG_TAG "TrustyNVRAM" + #include "trusty_nvram_implementation.h" #include <errno.h> #include <string.h> +#include <android/log.h> #include <hardware/nvram.h> #include <trusty/tipc.h> -#define LOG_TAG "TrustyNVRAM" -#include <log/log.h> - #include <nvram/messages/blob.h> namespace nvram { |