From 103403baf7ecbe41f111758549bc79e9effd7a35 Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Thu, 15 Mar 2018 10:36:16 +0900 Subject: [PATCH] rename tbm_type_into to tbm_type_common Change-Id: I8293dd35bbec9b36774564f0271d5c7a26201932 --- packaging/libtbm.spec | 2 +- src/Makefile.am | 2 +- src/tbm_bo.h | 2 +- src/tbm_bufmgr.h | 2 +- src/{tbm_type_int.h => tbm_type_common.h} | 10 +++++----- 5 files changed, 9 insertions(+), 9 deletions(-) rename src/{tbm_type_int.h => tbm_type_common.h} (98%) diff --git a/packaging/libtbm.spec b/packaging/libtbm.spec index 120b31a..79af5a4 100644 --- a/packaging/libtbm.spec +++ b/packaging/libtbm.spec @@ -110,7 +110,7 @@ rm -f %{_unitdir_user}/basic.target.wants/tbm-drm-auth-user.path %{_includedir}/tbm_surface_queue.h %{_includedir}/tbm_bufmgr_backend.h %{_includedir}/tbm_type.h -%{_includedir}/tbm_type_int.h +%{_includedir}/tbm_type_common.h %{_includedir}/tbm_drm_helper.h %{_includedir}/tbm_sync.h %{_includedir}/tbm_bo.h diff --git a/src/Makefile.am b/src/Makefile.am index 8e2307f..6ac8c6e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -48,7 +48,7 @@ libtbminclude_HEADERS = tbm_bufmgr.h \ tbm_surface.h \ tbm_bufmgr_backend.h \ tbm_type.h \ - tbm_type_int.h \ + tbm_type_common.h \ tbm_surface_internal.h \ tbm_surface_queue.h \ tbm_drm_helper.h \ diff --git a/src/tbm_bo.h b/src/tbm_bo.h index d4ef6ab..84fe9b7 100644 --- a/src/tbm_bo.h +++ b/src/tbm_bo.h @@ -33,7 +33,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define _TBM_BO_H_ #include -#include +#include /** * \file tbm_bo.h diff --git a/src/tbm_bufmgr.h b/src/tbm_bufmgr.h index 0926b31..f597211 100644 --- a/src/tbm_bufmgr.h +++ b/src/tbm_bufmgr.h @@ -33,7 +33,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define _TBM_BUFMGR_H_ #include -#include +#include #include /** diff --git a/src/tbm_type_int.h b/src/tbm_type_common.h similarity index 98% rename from src/tbm_type_int.h rename to src/tbm_type_common.h index e9d2942..8f68fa8 100644 --- a/src/tbm_type_int.h +++ b/src/tbm_type_common.h @@ -30,13 +30,13 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **************************************************************************/ -#ifndef _TBM_TYPE_INT_H_ -#define _TBM_TYPE_INT_H_ +#ifndef _TBM_TYPE_COMMON_H_ +#define _TBM_TYPE_COMMON_H_ -#include +#include /** - * \file tbm_type_int.h + * \file tbm_type_common.h * \brief Type definition used internally */ @@ -209,4 +209,4 @@ typedef enum { TBM_BUFGMR_DEBUG_TRACE_SURFACE_QUEUE = (1 << 3), } tbm_bufmgr_debug_trace_mask; -#endif /* _TBM_TYPE_INT_H_ */ +#endif /* _TBM_TYPE_COMMON_H_ */ -- 2.7.4