diff options
author | Mario Six | 2018-07-31 11:44:13 +0200 |
---|---|---|
committer | Simon Glass | 2018-09-29 11:49:35 -0600 |
commit | e6fd0181082a04e743a07ebd9f6fdd0e06dc1399 (patch) | |
tree | d552e2aa2fbe7bb6e4ea4ff6b262696d04f0b4d9 /drivers/board/sandbox.h | |
parent | 6238ae4d60476dd7535b781ef3f255f676851283 (diff) |
test: Add tests for board uclass
Add tests for the new board uclass.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'drivers/board/sandbox.h')
-rw-r--r-- | drivers/board/sandbox.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/board/sandbox.h b/drivers/board/sandbox.h new file mode 100644 index 00000000000..2cff494f56e --- /dev/null +++ b/drivers/board/sandbox.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2018 + * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc + */ + +enum { + BOOL_CALLED_DETECT, + INT_TEST1, + INT_TEST2, + STR_VACATIONSPOT, +}; |