1 // 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 10 static const struct udevice_id at91_sckc_match[] = { 11 { .compatible = "atmel,at91sam9x5-sckc" }, 12 {} 13 }; 14 15 U_BOOT_DRIVER(at91_sckc) = { 16 .name = "at91-sckc", 17 .id = UCLASS_SIMPLE_BUS, 18 .of_match = at91_sckc_match, 19 }; 20