mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-03 08:14:12 +00:00
Pull DeviceTree fixes from Rob Herring: - Remove mc13892 as a trivial device - Improve of_find_node_by_name() documentation - Fix unit test dtc warnings - Clean-ups of USB binding documentation - Fix potential NULL deref in of_pci_map_rid * tag 'devicetree-fixes-for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: dt-bindings: trivial-devices: Remove fsl,mc13892 of: Document exactly what of_find_node_by_name() puts of: unittest: disable interrupts_property warning of: unittest: let dtc generate __local_fixups__ dt-bindings: usb: document hub and host-controller properties dt-bindings: usb: clean up compatible property dt-bindings: usb: fix reg-property port-number range dt-bindings: usb: fix example hub node name of/pci: Fix theoretical NULL dereference
30 lines
717 B
Makefile
30 lines
717 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
DTC_FLAGS_testcases := -Wno-interrupts_property
|
|
obj-y += testcases.dtb.o
|
|
|
|
targets += testcases.dtb testcases.dtb.S
|
|
|
|
ifdef CONFIG_OF_OVERLAY
|
|
|
|
obj-y += overlay.dtb.o
|
|
obj-y += overlay_bad_phandle.dtb.o
|
|
obj-y += overlay_bad_symbol.dtb.o
|
|
obj-y += overlay_base.dtb.o
|
|
|
|
targets += overlay.dtb overlay.dtb.S
|
|
targets += overlay_bad_phandle.dtb overlay_bad_phandle.dtb.S
|
|
targets += overlay_bad_symbol.dtb overlay_bad_symbol.dtb.S
|
|
targets += overlay_base.dtb overlay_base.dtb.S
|
|
|
|
# enable creation of __symbols__ node
|
|
DTC_FLAGS_overlay := -@
|
|
DTC_FLAGS_overlay_bad_phandle := -@
|
|
DTC_FLAGS_overlay_bad_symbol := -@
|
|
DTC_FLAGS_overlay_base := -@
|
|
|
|
endif
|
|
|
|
.PRECIOUS: \
|
|
$(obj)/%.dtb.S \
|
|
$(obj)/%.dtb
|