Merge tag 'xilinx-for-v2023.01-rc3' of https://source.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / drivers / spi / spi-emul-uclass.c
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 };