2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-07-20 09:55:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Atmel Corporation
|
|
|
|
* Wenyou.Yang <wenyou.yang@atmel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-05-17 23:18:03 +00:00
|
|
|
#include <dm.h>
|
2016-07-20 09:55:12 +00:00
|
|
|
|
2016-09-13 02:25:55 +00:00
|
|
|
static const struct udevice_id at91_sckc_match[] = {
|
2016-07-20 09:55:12 +00:00
|
|
|
{ .compatible = "atmel,at91sam9x5-sckc" },
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2016-09-13 02:25:55 +00:00
|
|
|
U_BOOT_DRIVER(at91_sckc) = {
|
|
|
|
.name = "at91-sckc",
|
|
|
|
.id = UCLASS_SIMPLE_BUS,
|
|
|
|
.of_match = at91_sckc_match,
|
2016-07-20 09:55:12 +00:00
|
|
|
};
|