dtc: Migrate "string property" checks to new framework

This patch converts to the new tree checking framework those checks
which verify that certain properties (device_type, model) have a
string value, when present.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
David Gibson 2007-12-06 17:01:07 +11:00 committed by Jon Loeliger
parent c21acabc40
commit faf037f0ef
3 changed files with 14 additions and 13 deletions

View file

@ -168,6 +168,8 @@ dtc_tests () {
run_test dtc-checkfails.sh name_properties -- -I dts -O dtb bad-name-property.dts
run_test dtc-checkfails.sh address_cells_is_cell size_cells_is_cell interrupt_cells_is_cell -- -I dts -O dtb bad-ncells.dts
run_test dtc-checkfails.sh device_type_is_string model_is_string status_is_string -- -I dts -O dtb bad-string-props.dts
}
while getopts "vt:m" ARG ; do