mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 01:40:56 +07:00
d695c82f25
The system memory node for the OMAP2420 H4 was incorrectly defined as start address followed by end address, instead of start address and size. No noticable side-effects were observed but fix this for correctness. Signed-off-by: Jon Hunter <jon-hunter@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
21 lines
493 B
Plaintext
21 lines
493 B
Plaintext
/*
|
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
/dts-v1/;
|
|
|
|
/include/ "omap2420.dtsi"
|
|
|
|
/ {
|
|
model = "TI OMAP2420 H4 board";
|
|
compatible = "ti,omap2420-h4", "ti,omap2420", "ti,omap2";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x4000000>; /* 64 MB */
|
|
};
|
|
};
|