blob: d92f36bd20e5f46681ea631ce4a935eede57ca16 [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 <dm.h>
9#include <spi.h>
10#include <spi_flash.h>
11
12UCLASS_DRIVER(spi_emul) = {
13 .id = UCLASS_SPI_EMUL,
14 .name = "spi_emul",
15};