This is now failing an edtlib check for unknown vendor prefixes. I can't find a reason to use a vendor prefix in application-local bindings like this, so just remove it wherever it appears by normalizing to test-foo-compat instead of test,foo_compat or test,foo-compat. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
/*
|
|
* Copyright (c) 2020 STMicroelectronics.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
resources {
|
|
compatible = "test-gpio-basic-api";
|
|
out-gpios = <&gpioc 6 0>;
|
|
in-gpios = <&gpioc 7 0>;
|
|
};
|
|
};
|