projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'dm-pull-30oct20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
[platform/kernel/u-boot.git]
/
drivers
/
misc
/
spltest_sandbox.c
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Copyright (c) 2016 Google, Inc
4
* Written by Simon Glass <sjg@chromium.org>
5
*/
6
7
#include <common.h>
8
#include <dm.h>
9
#include <dt-structs.h>
10
11
U_BOOT_DRIVER(sandbox_spl_test) = {
12
.name = "sandbox_spl_test",
13
.id = UCLASS_MISC,
14
.flags = DM_FLAG_PRE_RELOC,
15
};