aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2015-11-12 13:33:11 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-03-08 18:18:51 +1100
commit2fb8d518ce8bd2b1a23f3513f28ee02968fdbda4 (patch)
treeda4081618e3e958abfbc0bd8480ce83b5b30cc76 /include
parent2c3c14a14b13d9a180cb22896d878ffa96c39f1e (diff)
downloadskiboot-2fb8d518ce8bd2b1a23f3513f28ee02968fdbda4.zip
skiboot-2fb8d518ce8bd2b1a23f3513f28ee02968fdbda4.tar.gz
skiboot-2fb8d518ce8bd2b1a23f3513f28ee02968fdbda4.tar.bz2
core/fdt: Remove deivce_tree.h
None of the functions declared in the header file are public. This removes the header file. No logical changes introduced. Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Reviewed-by: Daniel Axtens <dja@axtens.net> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/device_tree.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/device_tree.h b/include/device_tree.h
deleted file mode 100644
index d04f20a..0000000
--- a/include/device_tree.h
+++ /dev/null
@@ -1,35 +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>
-
-/* Note: Device tree creation has no locks. It's assumed to be done
- * by a single processor in a non racy way
- */
-void *create_dtb(const struct dt_node *root);
-
-/* 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 */