diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-05-17 11:05:29 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-18 11:42:21 +0000 |
commit | d2489ee7128d000bb2eb22b0cfe2da5db605aa79 (patch) | |
tree | ebc2edf3f4ece63a37f2936cbd6b325a08626838 /src/mainboard/asus | |
parent | f6004114ec3807e15acbc01cee45d4f83254bae2 (diff) |
mainboard: Use decimal for `device cpu_cluster 0x0 on`
Most boards use `device cpu_cluster 0 on` with zero written in decimal.
For the sake of consistency, update the remaining boards to follow suit.
Change-Id: I083c8f8e9b38ddcc217dc8bf17ae3c9473ba77e9
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54357
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/h61m-cs/devicetree.cb | 2 | ||||
-rw-r--r-- | src/mainboard/asus/p8h61-m_pro/devicetree.cb | 2 | ||||
-rw-r--r-- | src/mainboard/asus/p8z77-m_pro/devicetree.cb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/asus/h61m-cs/devicetree.cb b/src/mainboard/asus/h61m-cs/devicetree.cb index 60f8191f38..adb39a7529 100644 --- a/src/mainboard/asus/h61m-cs/devicetree.cb +++ b/src/mainboard/asus/h61m-cs/devicetree.cb @@ -1,7 +1,7 @@ ## SPDX-License-Identifier: GPL-2.0-or-later chip northbridge/intel/sandybridge - device cpu_cluster 0x0 on + device cpu_cluster 0 on chip cpu/intel/model_206ax register "acpi_c1" = "1" register "acpi_c2" = "3" diff --git a/src/mainboard/asus/p8h61-m_pro/devicetree.cb b/src/mainboard/asus/p8h61-m_pro/devicetree.cb index 60e54ae809..804f272c04 100644 --- a/src/mainboard/asus/p8h61-m_pro/devicetree.cb +++ b/src/mainboard/asus/p8h61-m_pro/devicetree.cb @@ -1,7 +1,7 @@ ## SPDX-License-Identifier: GPL-2.0-only chip northbridge/intel/sandybridge - device cpu_cluster 0x0 on + device cpu_cluster 0 on chip cpu/intel/model_206ax register "acpi_c1" = "1" register "acpi_c2" = "3" diff --git a/src/mainboard/asus/p8z77-m_pro/devicetree.cb b/src/mainboard/asus/p8z77-m_pro/devicetree.cb index 1d1a244b9f..330fa0d2a3 100644 --- a/src/mainboard/asus/p8z77-m_pro/devicetree.cb +++ b/src/mainboard/asus/p8z77-m_pro/devicetree.cb @@ -1,7 +1,7 @@ ## SPDX-License-Identifier: GPL-2.0-only chip northbridge/intel/sandybridge - device cpu_cluster 0x0 on + device cpu_cluster 0 on chip cpu/intel/model_206ax register "acpi_c1" = "1" register "acpi_c2" = "3" |