blob: 64bc19c00112cf4f5cb2e6d6d66a982f90206edd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc60e1f22014-10-13 23:41:53 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glassc60e1f22014-10-13 23:41:53 -06004 */
5
Patrick Delaunayb953ec22021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_SPI_EMUL
7
Simon Glassc60e1f22014-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};