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 }; 21