mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
f5a47554e0
Enable the driver-model on da850-lcdk. We need to add a dummy nand node to the device tree, as the real nand node is a sub-node of the aemif device. On linux the aemif driver populates all its child nodes, but we can't do it in u-boot currently. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
16 lines
238 B
Text
16 lines
238 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* da850-lcdk U-Boot Additions
|
|
*
|
|
* Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
i2c0 = &i2c0;
|
|
};
|
|
|
|
nand {
|
|
compatible = "ti,davinci-nand";
|
|
};
|
|
};
|