spi-emul-uclass.c 237 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2014 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  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. };