[COMMON] lib: dss: remove debug-snapshot-soc.h
authorHosung Kim <hosung0.kim@samsung.com>
Thu, 24 May 2018 11:41:41 +0000 (20:41 +0900)
committerYoungmin Nam <youngmin.nam@samsung.com>
Fri, 29 Jun 2018 09:18:42 +0000 (18:18 +0900)
debug-snapshot-soc.h file adds to the confusion.

Change-Id: I2d8bb7f2286636ec0c459b7f5aa55c60cf98136d
Signed-off-by: Hosung Kim <hosung0.kim@samsung.com>
include/linux/debug-snapshot-soc.h [deleted file]
lib/debug-snapshot-local.h
lib/debug-snapshot.c

diff --git a/include/linux/debug-snapshot-soc.h b/include/linux/debug-snapshot-soc.h
deleted file mode 100644 (file)
index 0b1bd2b..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (c) 2013 Samsung Electronics Co., Ltd.
- *             http://www.samsung.com
- *
- * Debug-SnapShot: Debug Framework for Ramdump based debugging method
- * The original code is Exynos-Snapshot for Exynos SoC
- *
- * Author: Hosung Kim <hosung0.kim@samsung.com>
- * Author: Changki Kim <changki.kim@samsung.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- */
-
-#ifndef DEBUG_SNAPSHOT_SOC_H
-#define DEBUG_SNAPSHOT_SOC_H
-
-/* To Support Samsung SoC */
-#include <dt-bindings/soc/samsung/debug-snapshot-table.h>
-#ifdef CONFIG_DEBUG_SNAPSHOT_PMU
-#include <soc/samsung/cal-if.h>
-#endif
-
-/* SoC Dependent Header */
-#define DSS_REG_MCT_ADDR       (0)
-#define DSS_REG_MCT_SIZE       (0)
-#define DSS_REG_UART_ADDR      (0)
-#define DSS_REG_UART_SIZE      (0)
-
-struct dbg_snapshot_ops {
-        int (*pd_status)(unsigned int id);
-};
-
-extern struct dbg_snapshot_ops dss_ops;
-#endif
index f78ccfaf1a7ca9600c7ac8ce9e83c63c61ab2be7..d1a5580b5f60dcb7569b99e5075dab463e51b784 100644 (file)
@@ -17,7 +17,6 @@
 #define DEBUG_SNAPSHOT_LOCAL_H
 #include <linux/clk-provider.h>
 #include <linux/debug-snapshot.h>
-#include <linux/debug-snapshot-soc.h>
 #include <linux/debug-snapshot-helper.h>
 
 extern void dbg_snapshot_log_idx_init(void);
@@ -82,6 +81,12 @@ extern struct dbg_snapshot_helper_ops *dss_soc_ops;
 #define DSS_OFFSET_PANIC_STRING                (0xC00)
 #define DSS_OFFSET_SPARE_BASE          (DSS_HEADER_TOTAL_SZ)
 
+/* SoC Specific define, This will be removed */
+#define DSS_REG_MCT_ADDR       (0)
+#define DSS_REG_MCT_SIZE       (0)
+#define DSS_REG_UART_ADDR      (0)
+#define DSS_REG_UART_SIZE      (0)
+
 typedef int (*dss_initcall_t)(const struct device_node *);
 
 struct dbg_snapshot_base {
index 8b8aad111d62f2cfef7635a27fedde27a24f2a24..195d2a692d03a79e7d42ba51940ba8a70ee2198b 100644 (file)
 
 #include "debug-snapshot-local.h"
 
+/* To Support Samsung SoC */
+#include <dt-bindings/soc/samsung/debug-snapshot-table.h>
+#ifdef CONFIG_DEBUG_SNAPSHOT_PMU
+#include <soc/samsung/cal-if.h>
+#endif
+
 extern void register_hook_logbuf(void (*)(const char *, size_t));
 extern void register_hook_logger(void (*)(const char *, const char *, size_t));
 
@@ -37,6 +43,10 @@ struct dbg_snapshot_interface {
 };
 
 #ifdef CONFIG_DEBUG_SNAPSHOT_PMU
+struct dbg_snapshot_ops {
+        int (*pd_status)(unsigned int id);
+};
+
 struct dbg_snapshot_ops dss_ops = {
        .pd_status = cal_pd_status,
 };