spi-emul-uclass.c 272 B

12345678910111213141516
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 2014 Google, Inc
  4. */
  5. #define LOG_CATEGORY UCLASS_SPI_EMUL
  6. #include <common.h>
  7. #include <dm.h>
  8. #include <spi.h>
  9. #include <spi_flash.h>
  10. UCLASS_DRIVER(spi_emul) = {
  11. .id = UCLASS_SPI_EMUL,
  12. .name = "spi_emul",
  13. };