It's useless to try to keep up with a evolving UAPI, so just add it here temporarily. Change-Id: I18671f64cdf28af829fef1124f9f93cb4ffddcb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/minigbm/+/2003266 Reviewed-by: David Stevens <stevensd@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
9 lines
341 B
Bash
Executable file
9 lines
341 B
Bash
Executable file
#!/bin/sh
|
|
# 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 'virtgpu_drm.h' \
|
|
-not -name 'gbm.h' -not -name 'virgl_hw.h' \
|
|
-exec clang-format -style=file -i {} +
|