blob: a879b008ffd692b98049ff4de2ed557465f0848c [file] [log] [blame]
Googler25e92cf2023-12-13 10:05:01 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2016 Atmel Corporation
4 * Wenyou.Yang <wenyou.yang@atmel.com>
5 */
6
7#include <common.h>
8#include <dm.h>
9
10static const struct udevice_id at91_sckc_match[] = {
11 { .compatible = "atmel,at91sam9x5-sckc" },
12 {}
13};
14
15U_BOOT_DRIVER(at91_sckc) = {
16 .name = "at91-sckc",
17 .id = UCLASS_SIMPLE_BUS,
18 .of_match = at91_sckc_match,
19};