[Skiboot] [PATCH v7 06/17] include: Remove device_tree.h

Gavin Shan gwshan at linux.vnet.ibm.com
Thu Jun 4 16:18:58 AEST 2015


None of the functions declared in it are global. It's useless and
remove it.

Signed-off-by: Gavin Shan <gwshan at linux.vnet.ibm.com>
---
 core/init.c           |  1 -
 hdata/fsp.c           |  1 -
 hdata/memory.c        |  1 -
 include/device_tree.h | 30 ------------------------------
 4 files changed, 33 deletions(-)
 delete mode 100644 include/device_tree.h

diff --git a/core/init.c b/core/init.c
index 3140231..618f888 100644
--- a/core/init.c
+++ b/core/init.c
@@ -23,7 +23,6 @@
 #include <cpu.h>
 #include <processor.h>
 #include <xscom.h>
-#include <device_tree.h>
 #include <opal.h>
 #include <opal-msg.h>
 #include <elf.h>
diff --git a/hdata/fsp.c b/hdata/fsp.c
index 15cc611..9174f97 100644
--- a/hdata/fsp.c
+++ b/hdata/fsp.c
@@ -19,7 +19,6 @@
 #include <cpu.h>
 #include <vpd.h>
 #include <ccan/str/str.h>
-#include <device_tree.h>
 #include <interrupts.h>
 
 #include "hdata.h"
diff --git a/hdata/memory.c b/hdata/memory.c
index 18beb3b..282fc5b 100644
--- a/hdata/memory.c
+++ b/hdata/memory.c
@@ -15,7 +15,6 @@
  */
 
 #include <cpu.h>
-#include <device_tree.h>
 #include <device.h>
 #include <vpd.h>
 #include <ccan/str/str.h>
diff --git a/include/device_tree.h b/include/device_tree.h
deleted file mode 100644
index a32821c..0000000
--- a/include/device_tree.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright 2013-2014 IBM Corp.
- *
- * 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 __DEVICE_TREE_H
-#define __DEVICE_TREE_H
-#include <stdint.h>
-
-/* Helpers to cache errors in fdt; use this instead of fdt_* */
-uint32_t dt_begin_node(const char *name); /* returns phandle */
-void dt_property_string(const char *name, const char *value);
-void dt_property_cell(const char *name, u32 cell);
-void dt_property_cells(const char *name, int count, ...);
-void dt_property(const char *name, const void *val, size_t size);
-void dt_end_node(void);
-
-
-#endif /* __DEVICE_TREE_H */
-- 
2.1.0



More information about the Skiboot mailing list