diff options
Diffstat (limited to 'include/asm-powerpc/prom.h')
-rw-r--r-- | include/asm-powerpc/prom.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-powerpc/prom.h b/include/asm-powerpc/prom.h index 8a21791c7cae..49d2c7455f8e 100644 --- a/include/asm-powerpc/prom.h +++ b/include/asm-powerpc/prom.h | |||
@@ -104,8 +104,8 @@ struct reg_property32 { | |||
104 | }; | 104 | }; |
105 | 105 | ||
106 | struct reg_property64 { | 106 | struct reg_property64 { |
107 | unsigned long address; | 107 | u64 address; |
108 | unsigned long size; | 108 | u64 size; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | struct property { | 111 | struct property { |
@@ -155,12 +155,12 @@ static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_e | |||
155 | 155 | ||
156 | 156 | ||
157 | /* OBSOLETE: Old style node lookup */ | 157 | /* OBSOLETE: Old style node lookup */ |
158 | extern struct device_node *find_devices(const char *name); | 158 | extern __deprecated struct device_node *find_devices(const char *name); |
159 | extern struct device_node *find_type_devices(const char *type); | 159 | extern __deprecated struct device_node *find_type_devices(const char *type); |
160 | extern struct device_node *find_path_device(const char *path); | 160 | extern __deprecated struct device_node *find_path_device(const char *path); |
161 | extern struct device_node *find_compatible_devices(const char *type, | 161 | extern __deprecated struct device_node *find_compatible_devices(const char *type, |
162 | const char *compat); | 162 | const char *compat); |
163 | extern struct device_node *find_all_nodes(void); | 163 | extern __deprecated struct device_node *find_all_nodes(void); |
164 | 164 | ||
165 | /* New style node lookup */ | 165 | /* New style node lookup */ |
166 | extern struct device_node *of_find_node_by_name(struct device_node *from, | 166 | extern struct device_node *of_find_node_by_name(struct device_node *from, |