sckc.c 390 B

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