blob: 64bc19c00112cf4f5cb2e6d6d66a982f90206edd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass10a4a332014-10-13 23:41:53 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glass10a4a332014-10-13 23:41:53 -06004 */
5
Patrick Delaunay81313352021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_SPI_EMUL
7
Simon Glass10a4a332014-10-13 23:41:53 -06008#include <common.h>
9#include <dm.h>
10#include <spi.h>
11#include <spi_flash.h>
12
13UCLASS_DRIVER(spi_emul) = {
14 .id = UCLASS_SPI_EMUL,
15 .name = "spi_emul",
16};