mb/emulation: Remove fake devicetree.cb components
Change-Id: I31853e3ede786eb9e10704674e42dd56c3a48688 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41717 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Philipp Hug <philipp@hug.cx>
This commit is contained in:
parent
ffd480fac2
commit
3ae17a42c1
|
@ -1,6 +1,5 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
# This file exists only to avoid a compile error. It needs a devicetree.cb that is not empty.
|
||||
chip drivers/generic/generic # I2C0 controller
|
||||
device i2c 6 on end # Fake component for testing
|
||||
chip mainboard/emulation/qemu-aarch64
|
||||
device cpu_cluster 0 on end
|
||||
end
|
||||
|
|
|
@ -27,3 +27,5 @@ struct chip_operations mainboard_ops = {
|
|||
.name = "qemu_aarch64",
|
||||
.enable_dev = mainboard_enable,
|
||||
};
|
||||
|
||||
struct chip_operations mainboard_emulation_qemu_aarch64_ops = { };
|
||||
|
|
|
@ -2,7 +2,5 @@
|
|||
|
||||
# TODO fill with Versatile Express board data in QEMU.
|
||||
chip cpu/armltd/cortex-a9
|
||||
chip drivers/generic/generic # I2C0 controller
|
||||
device i2c 6 on end # Fake component for testing
|
||||
end
|
||||
device cpu_cluster 0 on end
|
||||
end
|
||||
|
|
|
@ -2,7 +2,4 @@
|
|||
|
||||
chip soc/ucb/riscv
|
||||
device cpu_cluster 0 on end
|
||||
chip drivers/generic/generic # I2C0 controller
|
||||
device i2c 6 on end # Fake component for testing
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,7 +2,4 @@
|
|||
|
||||
chip soc/ucb/riscv
|
||||
device cpu_cluster 0 on end
|
||||
chip drivers/generic/generic # I2C0 controller
|
||||
device i2c 6 on end # Fake component for testing
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue