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