]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/mach-tegra/tegra124/pmc.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / arm / mach-tegra / tegra124 / pmc.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2017 Google, Inc
4 */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <syscon.h>
9
10 static const struct udevice_id tegra124_syscon_ids[] = {
11 { .compatible = "nvidia,tegra124-pmc", .data = TEGRA_SYSCON_PMC },
12 };
13
14 U_BOOT_DRIVER(syscon_tegra124) = {
15 .name = "tegra124_syscon",
16 .id = UCLASS_SYSCON,
17 .of_match = tegra124_syscon_ids,
18 };