The name and wording used in template can be misleading. Use more accurate word instance instead of device since an implementation does not necessarily have to implement a device (in the sense of Zephyr device model), and if it does then devicetree should be used to describe number of instances as in the case of CDC ACM implementation. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
11 lines
316 B
Plaintext
11 lines
316 B
Plaintext
# Kconfig template file for setting instances count for various USB classes.
|
|
|
|
# Copyright (c) 2019 Intel Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config $(module)_INSTANCES_COUNT
|
|
int "Number of $(module) instances"
|
|
default $(default-count)
|
|
help
|
|
Number of instances of this USB class implementation.
|