of/unittest: Rename selftest.c to unittest.c
This is unit testing code. It should use that name because it makes more sense than 'selftest'. Rename the files to match and rename the config variable. Signed-off-by: Grant Likely <grant.likely@linaro.org>
This commit is contained in:
parent
851da976dc
commit
19fd74879a
8 changed files with 4 additions and 4 deletions
|
@ -7,8 +7,8 @@ config OF
|
||||||
menu "Device Tree and Open Firmware support"
|
menu "Device Tree and Open Firmware support"
|
||||||
depends on OF
|
depends on OF
|
||||||
|
|
||||||
config OF_SELFTEST
|
config OF_UNITTEST
|
||||||
bool "Device Tree Runtime self tests"
|
bool "Device Tree runtime unit tests"
|
||||||
depends on OF_IRQ && OF_EARLY_FLATTREE
|
depends on OF_IRQ && OF_EARLY_FLATTREE
|
||||||
select OF_DYNAMIC
|
select OF_DYNAMIC
|
||||||
select OF_RESOLVE
|
select OF_RESOLVE
|
||||||
|
|
|
@ -6,8 +6,8 @@ obj-$(CONFIG_OF_PROMTREE) += pdt.o
|
||||||
obj-$(CONFIG_OF_ADDRESS) += address.o
|
obj-$(CONFIG_OF_ADDRESS) += address.o
|
||||||
obj-$(CONFIG_OF_IRQ) += irq.o
|
obj-$(CONFIG_OF_IRQ) += irq.o
|
||||||
obj-$(CONFIG_OF_NET) += of_net.o
|
obj-$(CONFIG_OF_NET) += of_net.o
|
||||||
obj-$(CONFIG_OF_SELFTEST) += of_selftest.o
|
obj-$(CONFIG_OF_UNITTEST) += of_unittest.o
|
||||||
of_selftest-objs := selftest.o testcase-data/testcases.dtb.o
|
of_unittest-objs := unittest.o unittest-data/testcases.dtb.o
|
||||||
obj-$(CONFIG_OF_MDIO) += of_mdio.o
|
obj-$(CONFIG_OF_MDIO) += of_mdio.o
|
||||||
obj-$(CONFIG_OF_PCI) += of_pci.o
|
obj-$(CONFIG_OF_PCI) += of_pci.o
|
||||||
obj-$(CONFIG_OF_PCI_IRQ) += of_pci_irq.o
|
obj-$(CONFIG_OF_PCI_IRQ) += of_pci_irq.o
|
||||||
|
|
Loading…
Reference in a new issue