diff --git a/PRESUBMIT.cfg b/PRESUBMIT.cfg index 4068b32..5dfbb4b 100644 --- a/PRESUBMIT.cfg +++ b/PRESUBMIT.cfg @@ -8,5 +8,5 @@ cros_license_check: false tab_check: false bug_field_check: false test_field_check: false -[Hooks Scripts] +[Hook Scripts] hook0 = ./presubmit.sh diff --git a/presubmit.sh b/presubmit.sh index 735b6b3..6d55f2a 100755 --- a/presubmit.sh +++ b/presubmit.sh @@ -2,7 +2,6 @@ # Copyright 2017 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. - find \ '(' -name '*.[ch]' -or -name '*.cc' ')' \ -not -name 'gbm.h' \ diff --git a/rockchip.c b/rockchip.c index 45b813d..74a23d4 100644 --- a/rockchip.c +++ b/rockchip.c @@ -194,8 +194,7 @@ static int rockchip_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint ret = drmIoctl(bo->drv->fd, DRM_IOCTL_ROCKCHIP_GEM_CREATE, &gem_create); if (ret) { - fprintf(stderr, "drv: DRM_IOCTL_ROCKCHIP_GEM_CREATE failed " - "(size=%llu)\n", + fprintf(stderr, "drv: DRM_IOCTL_ROCKCHIP_GEM_CREATE failed (size=%llu)\n", gem_create.size); return ret; } diff --git a/tegra.c b/tegra.c index c2b9a6c..afdf431 100644 --- a/tegra.c +++ b/tegra.c @@ -221,9 +221,7 @@ static int tegra_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint3 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_TEGRA_GEM_CREATE, &gem_create); if (ret) { - fprintf(stderr, "drv: DRM_IOCTL_TEGRA_GEM_CREATE failed " - "(size=%zu)\n", - size); + fprintf(stderr, "drv: DRM_IOCTL_TEGRA_GEM_CREATE failed (size=%zu)\n", size); return ret; }