sckc.c 419 B

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