drm/qxl: remove unused variable from `qxl_process_single_command()`
authorMiguel Ojeda <ojeda@kernel.org>
Wed, 27 Mar 2024 17:55:56 +0000 (18:55 +0100)
committerMaxime Ripard <mripard@kernel.org>
Thu, 28 Mar 2024 10:15:48 +0000 (11:15 +0100)
commitaba2a144c0bf1ecdcbc520525712fb661392e509
tree6674b267be72d3fcbca6aaed16cabe40300a1ccd
parent7cd78fd7e29644641b848d69a585f2aea45f0991
drm/qxl: remove unused variable from `qxl_process_single_command()`

Clang 14 in an (essentially) defconfig loongarch64 build for next-20240327
reports [1]:

     drivers/gpu/drm/qxl/qxl_ioctl.c:148:14: error: variable 'num_relocs'
     set but not used [-Werror,-Wunused-but-set-variable]

The variable was originally used in the `out_free_bos` label, but commit
74d9a6335dce ("drm/qxl: Simplify cleaning qxl processing command")
removed the use that happened in that label.

Thus remove the unused variable.

Fixes: 74d9a6335dce ("drm/qxl: Simplify cleaning qxl processing command")
Closes: https://lore.kernel.org/lkml/CANiq72kqqQfUxLkHJYqeBAhpc6YcX7bfR96gmmbF=j8hEOykqw@mail.gmail.com/ [1]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Link: https://lore.kernel.org/r/20240327175556.233126-2-ojeda@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>
drivers/gpu/drm/qxl/qxl_ioctl.c