From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Wed, 10 Oct 2018 21:27:08 +0200 Subject: [U-Boot] [PATCH 3/4] test: Add PCI device entry without compat string and with DT node In-Reply-To: <20181010192709.19302-1-marek.vasut+renesas@gmail.com> References: <20181010192709.19302-1-marek.vasut+renesas@gmail.com> Message-ID: <20181010192709.19302-3-marek.vasut+renesas@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Add PCI entry without compatible string and with a DT node only with reg = <...> property into the DT. This is needed for the tests to verify whether such a setup creates an U-Boot PCI device with the DT node associated with it in udevice.node. Signed-off-by: Marek Vasut Cc: Simon Glass Cc: Tom Rini --- arch/sandbox/dts/test.dts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index ad94901fa1..0a6b86999d 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -363,7 +363,11 @@ ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000 0x01000000 0 0x40000000 0x40000000 0 0x2000>; sandbox,dev-info = <0x08 0x00 0x1234 0x5678 - 0x0c 0x00 0x1234 0x5678>; + 0x0c 0x00 0x1234 0x5678 + 0x10 0x00 0x1234 0x5678>; + pci at 10,0 { + reg = <0x8000 0 0 0 0>; + }; }; pci2: pci-controller2 { -- 2.18.0