Skip to content

Commit

Permalink
display: Use log.h from VNDK
Browse files Browse the repository at this point in the history
Change-Id: I8aa8566036a44b1587f5cfe6c745e11a3dd19481
  • Loading branch information
naseer authored and Gerrit - the friendly Code Review server committed Mar 20, 2018
1 parent 6613547 commit 79dc3b0
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion gpu_tonemapper/TonemapFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

#include "TonemapFactory.h"
#include <utils/Log.h>
#include <log/log.h>
#include "Tonemapper.h"
#include "engine.h"

Expand Down
2 changes: 1 addition & 1 deletion gpu_tonemapper/glengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

#include "glengine.h"
#include <utils/Log.h>
#include <log/log.h>
#include "engine.h"

void checkGlError(const char *, int);
Expand Down
2 changes: 1 addition & 1 deletion hdmi_cec/qhdmi_cec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#define DEBUG 0
#define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL)
#include <cutils/log.h>
#include <log/log.h>
#include <errno.h>
#include <hardware/hdmi_cec.h>
#include <utils/Trace.h>
Expand Down
2 changes: 1 addition & 1 deletion libcopybit/copybit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* limitations under the License.
*/

#include <cutils/log.h>
#include <log/log.h>

#include <linux/msm_mdp.h>
#include <linux/fb.h>
Expand Down
2 changes: 1 addition & 1 deletion libcopybit/copybit_c2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <cutils/log.h>
#include <log/log.h>
#include <sys/resource.h>
#include <sys/prctl.h>

Expand Down
2 changes: 1 addition & 1 deletion libcopybit/software_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <cutils/log.h>
#include <log/log.h>
#include <stdlib.h>
#include <errno.h>
#include "software_converter.h"
Expand Down
2 changes: 1 addition & 1 deletion libgralloc1/gr_adreno_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <cutils/log.h>
#include <log/log.h>
#include <cutils/properties.h>
#include <dlfcn.h>
#include <mutex>
Expand Down
2 changes: 1 addition & 1 deletion libgralloc1/gr_allocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <cutils/log.h>
#include <log/log.h>
#include <algorithm>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion libgralloc1/gr_device_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <cutils/log.h>
#include <log/log.h>
#include <sync/sync.h>
#include <algorithm>
#include <sstream>
Expand Down
2 changes: 1 addition & 1 deletion libgralloc1/gr_ion_alloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <sys/mman.h>
#include <stdlib.h>
#include <fcntl.h>
#include <cutils/log.h>
#include <log/log.h>
#include <errno.h>
#include <utils/Trace.h>

Expand Down
2 changes: 1 addition & 1 deletion libgralloc1/gr_priv_handle.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#define __GR_PRIV_HANDLE_H__

#include <errno.h>
#include <cutils/log.h>
#include <log/log.h>
#include <hardware/gralloc1.h>
#include <hardware/gralloc.h>
#ifdef __cplusplus
Expand Down
2 changes: 1 addition & 1 deletion liblight/lights.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// #define LOG_NDEBUG 0

#include <cutils/log.h>
#include <log/log.h>
#include <cutils/properties.h>
#include <stdint.h>
#include <stdlib.h>
Expand Down
2 changes: 1 addition & 1 deletion libqdutils/profiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <stdio.h>
#include <utils/Singleton.h>
#include <cutils/properties.h>
#include <cutils/log.h>
#include <log/log.h>

#ifndef DEBUG_CALC_FPS
#define CALC_FPS() ((void)0)
Expand Down
2 changes: 1 addition & 1 deletion libqdutils/qdMetaData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <errno.h>
#include <string.h>
#include <sys/mman.h>
#include <cutils/log.h>
#include <log/log.h>
#include <cinttypes>
#include <gralloc_priv.h>
#include "qdMetaData.h"
Expand Down
2 changes: 1 addition & 1 deletion libqdutils/qd_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <utils/Errors.h>
#include <utils/Log.h>
#include <log/log.h>

#include <linux/fb.h>
#include <sys/ioctl.h>
Expand Down
2 changes: 1 addition & 1 deletion libqservice/IQHDMIClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <utils/Log.h>
#include <log/log.h>
#include <binder/Parcel.h>
#include "IQHDMIClient.h"

Expand Down
2 changes: 1 addition & 1 deletion libqservice/QService.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <utils/Errors.h>
#include <sys/types.h>
#include <cutils/log.h>
#include <log/log.h>
#include <binder/IServiceManager.h>
#include <IQService.h>
#include <IQClient.h>
Expand Down
2 changes: 1 addition & 1 deletion sdm/libs/hwc/hwc_debugger.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

#include <core/sdm_types.h>
#include <core/debug_interface.h>
#include <cutils/log.h>
#include <log/log.h>
#include <utils/Trace.h>
#include <bitset>

Expand Down

0 comments on commit 79dc3b0

Please sign in to comment.