1/*
2 * Copyright (c) 2023 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	cpus {
9		cpu@2 {
10			device_type = "cpu";
11			compatible = "intel,x86";
12			d-cache-line-size = <64>;
13			reg = <2>;
14		};
15
16		cpu@3 {
17			device_type = "cpu";
18			compatible = "intel,x86";
19			d-cache-line-size = <64>;
20			reg = <3>;
21		};
22	};
23};
24