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 /test/dm/Makefile | |
parent | c882163b09b8a2c52e3dd8acd7d296d6d06d1f2e (diff) | |
download | u-boot-b45c833c71f1ce26e0db6c30f96dc3228051cd15.tar.gz u-boot-b45c833c71f1ce26e0db6c30f96dc3228051cd15.tar.xz u-boot-b45c833c71f1ce26e0db6c30f96dc3228051cd15.zip |
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 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index 1b089960cb..49857c5092 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -30,6 +30,7 @@ obj-y += ofnode.o obj-$(CONFIG_OSD) += osd.o obj-$(CONFIG_DM_VIDEO) += panel.o obj-$(CONFIG_DM_PCI) += pci.o +obj-$(CONFIG_PCH) += pch.o obj-$(CONFIG_PHY) += phy.o obj-$(CONFIG_POWER_DOMAIN) += power-domain.o obj-$(CONFIG_DM_PWM) += pwm.o |