Move shared files to hwcommon package 00/183700/1
authorlokilee73 <changjoo.lee@samsung.com>
Tue, 10 Jul 2018 06:28:18 +0000 (15:28 +0900)
committerlokilee73 <changjoo.lee@samsung.com>
Tue, 10 Jul 2018 06:28:22 +0000 (15:28 +0900)
Change-Id: I6e14eb3b3b765ba7e66bd433a575a24df1f004e7
Signed-off-by: lokilee73 <changjoo.lee@samsung.com>
hw/display/CMakeLists.txt [changed mode: 0644->0755]
hw/display/display.c [changed mode: 0644->0755]
hw/led/CMakeLists.txt [changed mode: 0644->0755]
hw/led/led.c
hw/shared.c [deleted file]
hw/shared.h [deleted file]
hw/touchscreen/CMakeLists.txt [changed mode: 0644->0755]
hw/touchscreen/touchscreen.c
hw/udev.c [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index ebccfbe..08c293d
@@ -13,7 +13,7 @@ ENDFOREACH(flag)
 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -fvisibility=hidden")
 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}")
 
-ADD_LIBRARY(${PROJECT_NAME} MODULE display.c ../shared.c)
+ADD_LIBRARY(${PROJECT_NAME} MODULE display.c)
 TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${display_pkgs_LDFLAGS})
 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES PREFIX "")
 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${LIB_INSTALL_DIR}/hw COMPONENT RuntimeLibraries)
old mode 100644 (file)
new mode 100755 (executable)
index 4c93d25..9eb4f89
@@ -24,7 +24,7 @@
 #include <linux/limits.h>
 
 #include <hw/display.h>
-#include "../shared.h"
+#include <hw/shared.h>
 
 #ifndef BACKLIGHT_PATH
 #define BACKLIGHT_PATH  "/sys/class/backlight/rpi_backlight"
old mode 100644 (file)
new mode 100755 (executable)
index 6acfd7b..dfe38d5
@@ -13,7 +13,7 @@ ENDFOREACH(flag)
 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -fvisibility=hidden")
 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}")
 
-ADD_LIBRARY(${PROJECT_NAME} MODULE led.c ../shared.c)
+ADD_LIBRARY(${PROJECT_NAME} MODULE led.c)
 TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${led_pkgs_LDFLAGS})
 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES PREFIX "")
 
index d7f0b39..bc8da82 100755 (executable)
@@ -21,7 +21,7 @@
 #include <glib.h>
 
 #include <hw/led.h>
-#include "../shared.h"
+#include <hw/shared.h>
 
 #include <peripheral_io.h>
 
diff --git a/hw/shared.c b/hw/shared.c
deleted file mode 100644 (file)
index b6401c1..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * device-node
- *
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the License);
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <errno.h>
-
-#define BUF_MAX                255
-
-static int sys_read_buf(char *file, char *buf, int len)
-{
-       int fd, r;
-
-       if (!file || !buf || len < 0)
-               return -EINVAL;
-
-       fd = open(file, O_RDONLY);
-       if (fd == -1)
-               return -ENOENT;
-
-       r = read(fd, buf, len);
-       close(fd);
-       if ((r >= 0) && (r < len))
-               buf[r] = '\0';
-       else
-               return -EIO;
-
-       return 0;
-}
-
-static int sys_write_buf(char *file, char *buf)
-{
-       int fd, r;
-
-       if (!file || !buf)
-               return -EINVAL;
-
-       fd = open(file, O_WRONLY);
-       if (fd == -1)
-               return -EPERM;
-
-       r = write(fd, buf, strlen(buf));
-       close(fd);
-       if (r < 0)
-               return -EIO;
-
-       return 0;
-}
-
-int sys_get_int(char *fname, int *val)
-{
-       char buf[BUF_MAX];
-       int r;
-
-       if (!fname || !val)
-               return -EINVAL;
-
-       r = sys_read_buf(fname, buf, sizeof(buf));
-       if (r < 0)
-               return r;
-
-       *val = atoi(buf);
-       return 0;
-}
-
-int sys_get_str(char *fname, char *str, int len)
-{
-       int r;
-
-       if (!fname || !str || len < 0)
-               return -EINVAL;
-
-       r = sys_read_buf(fname, str, len);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
-
-int sys_set_int(char *fname, int val)
-{
-       char buf[BUF_MAX];
-       int r;
-
-       if (!fname)
-               return -EINVAL;
-
-       snprintf(buf, sizeof(buf), "%d", val);
-       r = sys_write_buf(fname, buf);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
-
-int sys_set_str(char *fname, char *val)
-{
-       int r;
-
-       if (!fname || !val)
-               return -EINVAL;
-
-       r = sys_write_buf(fname, val);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
diff --git a/hw/shared.h b/hw/shared.h
deleted file mode 100644 (file)
index da51ca4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * libdevice-node
- *
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the License);
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-#ifndef __HW_DEFAULT_SHARED_H__
-#define __HW_DEFAULT_SHARED_H__
-
-#define FEATURE_HARDWARE_DLOG
-#ifdef FEATURE_HARDWARE_DLOG
-#define LOG_TAG        "HARDWARE"
-#include <dlog.h>
-#define _I(fmt, args...)       SLOGI(fmt, ##args)
-#define _D(fmt, args...)       SLOGD(fmt, ##args)
-#define _E(fmt, args...)       SLOGE(fmt, ##args)
-#else
-#define _I(x, ...)                     do { } while (0)
-#define _D(x, ...)                     do { } while (0)
-#define _E(x, ...)                     do { } while (0)
-#endif
-
-#define ARRAY_SIZE(name) (sizeof(name)/sizeof(name[0]))
-
-int sys_get_int(char *fname, int *val);
-int sys_get_str(char *fname, char *str, int len);
-int sys_set_int(char *fname, int val);
-int sys_set_str(char *fname, char *val);
-
-#endif
old mode 100644 (file)
new mode 100755 (executable)
index b097615..f364805
@@ -13,7 +13,7 @@ ENDFOREACH(flag)
 SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} -fvisibility=hidden")
 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}")
 
-ADD_LIBRARY(${PROJECT_NAME} MODULE touchscreen.c ../shared.c)
+ADD_LIBRARY(${PROJECT_NAME} MODULE touchscreen.c)
 TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${touchscreen_pkgs_LDFLAGS})
 SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES PREFIX "")
 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${LIB_INSTALL_DIR}/hw COMPONENT RuntimeLibraries)
index 8cae686..afe6b57 100755 (executable)
@@ -25,7 +25,7 @@
 #include <dirent.h>
 
 #include <hw/touchscreen.h>
-#include "../shared.h"
+#include <hw/shared.h>
 
 #define TOUCHSCREEN_CON_FILE   "/sys/devices/platform/rpi_ft5406/enable"
 
old mode 100644 (file)
new mode 100755 (executable)
index a30204b..9067126
--- a/hw/udev.c
+++ b/hw/udev.c
@@ -23,7 +23,7 @@
 #include <libudev.h>
 #include <glib.h>
 #include <string.h>
-#include "shared.h"
+#include <hw/shared.h>
 #include "udev.h"
 
 #define EVENT_KERNEL       "kernel"