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