diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-14 21:25:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-11-14 21:25:40 -0500 |
commit | 37cb8e1f8e10c6e9bd2a1b95cdda0620a21b0551 (patch) | |
tree | a1302a6cd2978d7a089534b8232ef3bfa921610e /drivers/gpu | |
parent | 6a77d86655a1f22f099e5c73eef61dea9c56d633 (diff) | |
parent | aa25e446ce76c37bfd75ac06598c316af94e9a26 (diff) |
Merge tag 'devicetree-for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
Pull DeviceTree updates from Rob Herring:
"A bigger diffstat than usual with the kbuild changes and a tree wide
fix in the binding documentation.
Summary:
- kbuild cleanups and improvements for dtbs
- Code clean-up of overlay code and fixing for some long standing
memory leak and race condition in applying overlays
- Improvements to DT memory usage making sysfs/kobjects optional and
skipping unflattening of disabled nodes. This is part of kernel
tinification efforts.
- Final piece of removing storing the full path for every DT node.
The prerequisite conversion of printk's to use device_node format
specifier happened in 4.14.
- Sync with current upstream dtc. This brings additional checks to
dtb compiling.
- Binding doc tree wide removal of leading 0s from examples
- RTC binding documentation adding missing devices and some
consolidation of duplicated bindings
- Vendor prefix documentation for nutsboard, Silicon Storage
Technology, shimafuji, Tecon Microprocessor Technologies, DH
electronics GmbH, Opal Kelly, and Next Thing"
* tag 'devicetree-for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: (55 commits)
dt-bindings: usb: add #phy-cells to usb-nop-xceiv
dt-bindings: Remove leading zeros from bindings notation
kbuild: handle dtb-y and CONFIG_OF_ALL_DTBS natively in Makefile.lib
MIPS: dts: remove bogus bcm96358nb4ser.dtb from dtb-y entry
kbuild: clean up *.dtb and *.dtb.S patterns from top-level Makefile
.gitignore: move *.dtb and *.dtb.S patterns to the top-level .gitignore
.gitignore: sort normal pattern rules alphabetically
dt-bindings: add vendor prefix for Next Thing Co.
scripts/dtc: Update to upstream version v1.4.5-6-gc1e55a5513e9
of: dynamic: fix memory leak related to properties of __of_node_dup
of: overlay: make pr_err() string unique
of: overlay: pr_err from return NOTIFY_OK to overlay apply/remove
of: overlay: remove unneeded check for NULL kbasename()
of: overlay: remove a dependency on device node full_name
of: overlay: simplify applying symbols from an overlay
of: overlay: avoid race condition between applying multiple overlays
of: overlay: loosen overly strict phandle clash check
of: overlay: expand check of whether overlay changeset can be removed
of: overlay: detect cases where device tree may become corrupt
of: overlay: minor restructuring
...
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/tilcdc/tilcdc_slave_compat.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/drivers/gpu/drm/tilcdc/tilcdc_slave_compat.c b/drivers/gpu/drm/tilcdc/tilcdc_slave_compat.c index 623a9140493c..54025af534d4 100644 --- a/drivers/gpu/drm/tilcdc/tilcdc_slave_compat.c +++ b/drivers/gpu/drm/tilcdc/tilcdc_slave_compat.c | |||
@@ -145,7 +145,6 @@ static struct device_node * __init tilcdc_get_overlay(struct kfree_table *kft) | |||
145 | __dtb_tilcdc_slave_compat_begin; | 145 | __dtb_tilcdc_slave_compat_begin; |
146 | static void *overlay_data; | 146 | static void *overlay_data; |
147 | struct device_node *overlay; | 147 | struct device_node *overlay; |
148 | int ret; | ||
149 | 148 | ||
150 | if (!size) { | 149 | if (!size) { |
151 | pr_warn("%s: No overlay data\n", __func__); | 150 | pr_warn("%s: No overlay data\n", __func__); |
@@ -164,11 +163,6 @@ static struct device_node * __init tilcdc_get_overlay(struct kfree_table *kft) | |||
164 | } | 163 | } |
165 | 164 | ||
166 | of_node_set_flag(overlay, OF_DETACHED); | 165 | of_node_set_flag(overlay, OF_DETACHED); |
167 | ret = of_resolve_phandles(overlay); | ||
168 | if (ret) { | ||
169 | pr_err("%s: Failed to resolve phandles: %d\n", __func__, ret); | ||
170 | return NULL; | ||
171 | } | ||
172 | 166 | ||
173 | return overlay; | 167 | return overlay; |
174 | } | 168 | } |
@@ -204,7 +198,7 @@ static void __init tilcdc_convert_slave_node(void) | |||
204 | /* For all memory needed for the overlay tree. This memory can | 198 | /* For all memory needed for the overlay tree. This memory can |
205 | be freed after the overlay has been applied. */ | 199 | be freed after the overlay has been applied. */ |
206 | struct kfree_table kft; | 200 | struct kfree_table kft; |
207 | int ret; | 201 | int ovcs_id, ret; |
208 | 202 | ||
209 | if (kfree_table_init(&kft)) | 203 | if (kfree_table_init(&kft)) |
210 | return; | 204 | return; |
@@ -247,9 +241,11 @@ static void __init tilcdc_convert_slave_node(void) | |||
247 | 241 | ||
248 | tilcdc_node_disable(slave); | 242 | tilcdc_node_disable(slave); |
249 | 243 | ||
250 | ret = of_overlay_create(overlay); | 244 | ovcs_id = 0; |
245 | ret = of_overlay_apply(overlay, &ovcs_id); | ||
251 | if (ret) | 246 | if (ret) |
252 | pr_err("%s: Creating overlay failed: %d\n", __func__, ret); | 247 | pr_err("%s: Applying overlay changeset failed: %d\n", |
248 | __func__, ret); | ||
253 | else | 249 | else |
254 | pr_info("%s: ti,tilcdc,slave node successfully converted\n", | 250 | pr_info("%s: ti,tilcdc,slave node successfully converted\n", |
255 | __func__); | 251 | __func__); |