diff options
author | Mark Salyzyn <salyzyn@google.com> | 2017-04-11 08:56:09 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2017-04-11 10:50:06 -0700 |
commit | d88dfe8607af019186a309674d9081a056ed3daa (patch) | |
tree | f25e5b360739e6791624fe5061e73e0d0d373c8e /modules/hwcomposer/hwcomposer.cpp | |
parent | f08d9dff190ffc1b479bede0b6037cfb1a9cb7fa (diff) |
libhardware: deprecate cutils/log.h
Replace cutils/log.h with log/log.h. Sort headers. Minimize conflicts.
Add missing required headers.
Test: compile
Bug: 34250038
Change-Id: I5c0f231cbfed90b73e0538c9d32ad3226c7cc5e4
Diffstat (limited to 'modules/hwcomposer/hwcomposer.cpp')
-rw-r--r-- | modules/hwcomposer/hwcomposer.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/hwcomposer/hwcomposer.cpp b/modules/hwcomposer/hwcomposer.cpp index 9d1aa34f..297cafd8 100644 --- a/modules/hwcomposer/hwcomposer.cpp +++ b/modules/hwcomposer/hwcomposer.cpp @@ -14,15 +14,14 @@ * limitations under the License. */ -#include <hardware/hardware.h> - #include <errno.h> #include <fcntl.h> #include <malloc.h> -#include <cutils/log.h> #include <cutils/atomic.h> +#include <log/log.h> +#include <hardware/hardware.h> #include <hardware/hwcomposer.h> #include <EGL/egl.h> |