spi-emul-uclass.c 234 B

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