mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 14:42:08 +02:00
tools: ynl: remove assigned but never used variable
These variables are assigned but never used according to Ruff. They can then be safely removed. This is linked to Ruff error F841 [1]: A variable that is defined but not used is likely a mistake, and should be removed to avoid confusion. Link: https://docs.astral.sh/ruff/rules/unused-variable/ [1] Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Reviewed-by: Asbjørn Sloth Tønnesen <ast@fiberby.net> Link: https://patch.msgid.link/20250909-net-next-ynl-ruff-v1-3-238c2bccdd99@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
287bc89bb4
commit
02962ddb39
|
|
@ -156,7 +156,6 @@ def main():
|
|||
global args
|
||||
args = parser.parse_args()
|
||||
|
||||
script_abs_dir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
||||
spec = os.path.join(spec_dir(), 'ethtool.yaml')
|
||||
schema = os.path.join(schema_dir(), 'genetlink-legacy.yaml')
|
||||
|
||||
|
|
|
|||
|
|
@ -2803,8 +2803,6 @@ def print_kernel_policy_sparse_enum_validates(family, cw):
|
|||
cw.p('/* Sparse enums validation callbacks */')
|
||||
first = False
|
||||
|
||||
sign = '' if attr.type[0] == 'u' else '_signed'
|
||||
suffix = 'ULL' if attr.type[0] == 'u' else 'LL'
|
||||
cw.write_func_prot('static int', f'{c_lower(attr.enum_name)}_validate',
|
||||
['const struct nlattr *attr', 'struct netlink_ext_ack *extack'])
|
||||
cw.block_start()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user