1
0
Fork 0

drm_hwcomposer: CI: Set clang-tidy level to NORMAL for some files

Some of files require small adjustments to move into NORMAL checks list.

Signed-off-by: Roman Stratiienko <roman.o.stratiienko@globallogic.com>
This commit is contained in:
Roman Stratiienko 2021-12-23 19:04:29 +02:00
parent e78235c0be
commit fc014f5792
26 changed files with 130 additions and 135 deletions

View file

@ -33,7 +33,7 @@ int AutoLock::Lock() {
return -EINVAL;
}
int ret = pthread_mutex_lock(mutex_);
if (ret) {
if (ret != 0) {
ALOGE("Failed to acquire %s lock %d", name_, ret);
return ret;
}
@ -47,7 +47,7 @@ int AutoLock::Unlock() {
return -EINVAL;
}
int ret = pthread_mutex_unlock(mutex_);
if (ret) {
if (ret != 0) {
ALOGE("Failed to release %s lock %d", name_, ret);
return ret;
}

View file

@ -17,30 +17,28 @@
#define ATRACE_TAG ATRACE_TAG_GRAPHICS
#define LOG_TAG "hwc-drm-utils"
#include <log/log.h>
#include <ui/Gralloc.h>
#include <ui/GraphicBufferMapper.h>
#include <utils/log.h>
#include <cerrno>
#include "bufferinfo/BufferInfoGetter.h"
#include "drm/DrmFbImporter.h"
#include "drmhwcomposer.h"
#define UNUSED(x) (void)(x)
namespace android {
int DrmHwcLayer::ImportBuffer(DrmDevice *drmDevice) {
int DrmHwcLayer::ImportBuffer(DrmDevice *drm_device) {
buffer_info = hwc_drm_bo_t{};
int ret = BufferInfoGetter::GetInstance()->ConvertBoInfo(sf_handle,
&buffer_info);
if (ret) {
if (ret != 0) {
ALOGE("Failed to convert buffer info %d", ret);
return ret;
}
FbIdHandle = drmDevice->GetDrmFbImporter().GetOrCreateFbId(&buffer_info);
if (!FbIdHandle) {
fb_id_handle = drm_device->GetDrmFbImporter().GetOrCreateFbId(&buffer_info);
if (!fb_id_handle) {
ALOGE("Failed to import buffer");
return -EINVAL;
}