From 2fb8d518ce8bd2b1a23f3513f28ee02968fdbda4 Mon Sep 17 00:00:00 2001 From: Gavin Shan Date: Thu, 12 Nov 2015 13:33:11 +1100 Subject: 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 Reviewed-by: Daniel Axtens Signed-off-by: Stewart Smith --- include/device_tree.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 include/device_tree.h (limited to 'include') 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 - -/* 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 */ -- cgit v1.1