sckc.c 447 B

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