diff options
author | Simon Glass <sjg@chromium.org> | 2019-02-16 20:24:50 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-02-20 15:26:36 +0800 |
commit | b45c833c71f1ce26e0db6c30f96dc3228051cd15 (patch) | |
tree | 2e4e0a7357882a7b40ed03607c64ef5975b10882 /drivers/pch/Makefile | |
parent | c882163b09b8a2c52e3dd8acd7d296d6d06d1f2e (diff) |
sandbox: pch: Add a test for the PCH uclass
This uclass currently has no tests. Add a sandbox driver and some simple
tests to provide basic coverage.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: Use "sandbox,pch" for the compatible string, for consistency]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/pch/Makefile')
-rw-r--r-- | drivers/pch/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pch/Makefile b/drivers/pch/Makefile index 696cdffedb..8ea6b7852a 100644 --- a/drivers/pch/Makefile +++ b/drivers/pch/Makefile @@ -3,3 +3,4 @@ obj-y += pch-uclass.o obj-y += pch7.o obj-y += pch9.o +obj-$(CONFIG_SANDBOX) += sandbox_pch.o |