summaryrefslogtreecommitdiff
path: root/drivers/bus/uniphier-system-bus.c
blob: c61d795bac391c4631268afa0f1d5b8ed9088c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-or-later

#include <dm.h>

static const struct udevice_id uniphier_system_bus_match[] = {
	{ .compatible = "socionext,uniphier-system-bus" },
	{ /* sentinel */ }
};

U_BOOT_DRIVER(uniphier_system_bus_driver) = {
	.name	= "uniphier-system-bus",
	.id	= UCLASS_SIMPLE_BUS,
	.of_match = uniphier_system_bus_match,
};