All in tree device drivers use some form of DEVICE_DT_GET so we no longer need to require label properties. Signed-off-by: Kumar Gala <galak@kernel.org>
19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&zephyr_udc0 {
|
|
hs_0 {
|
|
compatible = "usb-audio-hs";
|
|
mic-feature-mute;
|
|
mic-channel-l;
|
|
mic-channel-r;
|
|
|
|
hp-feature-mute;
|
|
hp-channel-l;
|
|
hp-channel-r;
|
|
};
|
|
};
|