]> git.sur5r.net Git - u-boot/blob - drivers/clk/at91/sckc.c
de8013e40a0d6f9a973bb655064273047dad8a69
[u-boot] / drivers / clk / at91 / sckc.c
1 /*
2  * Copyright (C) 2016 Atmel Corporation
3  *               Wenyou.Yang <wenyou.yang@atmel.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <dm.h>
10
11 static const struct udevice_id at91_sckc_match[] = {
12         { .compatible = "atmel,at91sam9x5-sckc" },
13         {}
14 };
15
16 U_BOOT_DRIVER(at91_sckc) = {
17         .name = "at91-sckc",
18         .id = UCLASS_SIMPLE_BUS,
19         .of_match = at91_sckc_match,
20 };