mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
16 lines
297 B
Text
16 lines
297 B
Text
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
/* Copyright 2021 NXP */
|
||
|
|
||
|
/*
|
||
|
* u-boot will enable the device in the linux device tree in place. Because
|
||
|
* we are using the linux device tree, we have to enable the PCI controller
|
||
|
* ourselves.
|
||
|
*/
|
||
|
&pcie1 {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&pcie2 {
|
||
|
status = "okay";
|
||
|
};
|