From 00aa3ac82ed0bc7d49f3235bec2991a647de3529 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Tue, 20 Oct 2020 02:12:59 +0300 Subject: [PATCH] ipa: Rename ipa_vimc.h to vimc.h To be consistent with the other pipeline handlers that don't prefix their IPA protocol header with ipa_, rename ipa_vimc.h to vimc.h. Signed-off-by: Laurent Pinchart Reviewed-by: Paul Elder Reviewed-by: Kieran Bingham --- include/libcamera/ipa/{ipa_vimc.h => vimc.h} | 2 +- src/ipa/vimc/vimc.cpp | 2 +- test/ipa/ipa_interface_test.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename include/libcamera/ipa/{ipa_vimc.h => vimc.h} (88%) diff --git a/include/libcamera/ipa/ipa_vimc.h b/include/libcamera/ipa/vimc.h similarity index 88% rename from include/libcamera/ipa/ipa_vimc.h rename to include/libcamera/ipa/vimc.h index 8e82dd94b..22d97992f 100644 --- a/include/libcamera/ipa/ipa_vimc.h +++ b/include/libcamera/ipa/vimc.h @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * ipa_vimc.h - Vimc Image Processing Algorithm module + * vimc.h - Vimc Image Processing Algorithm module */ #ifndef __LIBCAMERA_IPA_VIMC_H__ diff --git a/src/ipa/vimc/vimc.cpp b/src/ipa/vimc/vimc.cpp index 372a15f55..cf8411359 100644 --- a/src/ipa/vimc/vimc.cpp +++ b/src/ipa/vimc/vimc.cpp @@ -5,7 +5,7 @@ * ipa_vimc.cpp - Vimc Image Processing Algorithm module */ -#include +#include #include #include diff --git a/test/ipa/ipa_interface_test.cpp b/test/ipa/ipa_interface_test.cpp index 1bc93a631..67488409e 100644 --- a/test/ipa/ipa_interface_test.cpp +++ b/test/ipa/ipa_interface_test.cpp @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include "libcamera/internal/device_enumerator.h"