Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/2cdc778b62e46439dff84560a2def3032099f129/drivers/spi/spi-emul-uclass.c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
/*
|
|
* Copyright (c) 2014 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <spi.h>
|
|
#include <spi_flash.h>
|
|
|
|
UCLASS_DRIVER(spi_emul) = {
|
|
.id = UCLASS_SPI_EMUL,
|
|
.name = "spi_emul",
|
|
};
|
|
|