SPDX: Convert all of our single license tags to Linux Kernel style
[platform/kernel/u-boot.git] / arch / arm / mach-rockchip / rv1108 / syscon_rv1108.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <syscon.h>
9 #include <asm/arch/clock.h>
10
11 static const struct udevice_id rv1108_syscon_ids[] = {
12         { .compatible = "rockchip,rv1108-grf", .data = ROCKCHIP_SYSCON_GRF },
13         { }
14 };
15
16 U_BOOT_DRIVER(syscon_rv1108) = {
17         .name = "rv1108_syscon",
18         .id = UCLASS_SYSCON,
19         .of_match = rv1108_syscon_ids,
20 };