fix syntax error sandbox/jk/init
authorJunkyeong Kim <jk0430.kim@samsung.com>
Mon, 1 Feb 2021 05:27:14 +0000 (14:27 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Mon, 1 Feb 2021 05:27:17 +0000 (14:27 +0900)
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
COPYING
hal-api-tbm.pc
include/hal-tbm-common.h

diff --git a/COPYING b/COPYING
index 817cb95c79c7468b00f283d50bbf832407ed5cf9..ccee209ebbac53d0a5ca309c489cbb166b77099a 100644 (file)
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-Copyright 2013 Samsung Electronics co., Ltd. All Rights Reserved.
+Copyright 2021 Samsung Electronics co., Ltd. All Rights Reserved.
 
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
index c7de1013067352272fd4530c8c704ce9c2ca1d54..b143b844919e8781085ffb6d2e63b7a615d4742f 100644 (file)
@@ -1,6 +1,6 @@
 # Package Information for pkg-config
 
-package_name=hal-api-foo
+package_name=hal-api-tbm
 prefix=@PREFIX@
 exec_prefix=@EXEC_PREFIX@/hal
 libdir=@LIBDIR@/hal
index bf59b2a41c8e49c92e1749ae33b686c0915c5f24..880822f3b92588129ef9f75f4ce654cc957cd1b1 100644 (file)
@@ -77,7 +77,7 @@ typedef enum {
 /**
  * @brief Enumeration of tbm buffer manager capability.
  */
-typedef enum _hal_tbm_bufmgr_capability {
+typedef enum {
        HAL_TBM_BUFMGR_CAPABILITY_NONE = 0,                  /**< Not Support capability*/
        HAL_TBM_BUFMGR_CAPABILITY_SHARE_KEY = (1 << 0),      /**< Support sharing buffer by tbm key */
        HAL_TBM_BUFMGR_CAPABILITY_SHARE_FD = (1 << 1),       /**< Support sharing buffer by tbm fd */
@@ -88,7 +88,7 @@ typedef enum _hal_tbm_bufmgr_capability {
 /**
  * @brief Enumeration of bo memory type
  */
-typedef enum _hal_tbm_bo_memory_type {
+typedef enum {
        HAL_TBM_BO_DEFAULT = 0,                    /**< default memory: it depends on the backend         */
        HAL_TBM_BO_SCANOUT = (1 << 0),     /**< scanout memory                                    */
        HAL_TBM_BO_NONCACHABLE = (1 << 1), /**< non-cachable memory                               */