ae350.c 461 B

123456789101112131415161718192021
  1. /*
  2. * SPDX-License-Identifier: BSD-2-Clause
  3. *
  4. * Copyright (c) 2022 Andes Technology Corporation
  5. *
  6. * Authors:
  7. * Yu Chien Peter Lin <peterlin@andestech.com>
  8. */
  9. #include <platform_override.h>
  10. #include <sbi_utils/fdt/fdt_helper.h>
  11. #include <sbi_utils/fdt/fdt_fixup.h>
  12. static const struct fdt_match andes_ae350_match[] = {
  13. { .compatible = "andestech,ae350" },
  14. { },
  15. };
  16. const struct platform_override andes_ae350 = {
  17. .match_table = andes_ae350_match,
  18. };