blob: c61d795bac391c4631268afa0f1d5b8ed9088c58 [file] [log] [blame]
Masahiro Yamadae2bb0be2020-07-09 15:08:18 +09001// SPDX-License-Identifier: GPL-2.0-or-later
2
3#include <dm.h>
4
5static const struct udevice_id uniphier_system_bus_match[] = {
6 { .compatible = "socionext,uniphier-system-bus" },
7 { /* sentinel */ }
8};
9
10U_BOOT_DRIVER(uniphier_system_bus_driver) = {
11 .name = "uniphier-system-bus",
12 .id = UCLASS_SIMPLE_BUS,
13 .of_match = uniphier_system_bus_match,
14};