mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-17 07:14:25 +00:00
There's a lot of copy and pasting going on between the "cli" and code gen when it comes to representing the parsed spec. Create a library which both can use. Signed-off-by: Jakub Kicinski <kuba@kernel.org>
8 lines
231 B
Python
8 lines
231 B
Python
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
from .nlspec import SpecAttr, SpecAttrSet, SpecFamily, SpecOperation
|
|
from .ynl import YnlFamily
|
|
|
|
__all__ = ["SpecAttr", "SpecAttrSet", "SpecFamily", "SpecOperation",
|
|
"YnlFamily"]
|