netconsole: move init/cleanup functions lower
authorBreno Leitao <leitao@debian.org>
Thu, 12 Oct 2023 11:13:58 +0000 (04:13 -0700)
committerJakub Kicinski <kuba@kernel.org>
Sat, 14 Oct 2023 00:26:38 +0000 (17:26 -0700)
commit28856ab2c0b5b6e87b9a9739a0b59b6ff83689bd
treec4958355b4f594e8b8764aa68d908d63ee03c8c8
parent220dd227ca3aec6ab65fcdfd4549ce12fe326249
netconsole: move init/cleanup functions lower

Move alloc_param_target() and its counterpart (free_param_target())
to the bottom of the file. These functions are called mostly at
initialization/cleanup of the module, and they should be just above the
callers, at the bottom of the file.

From a practical perspective, having alloc_param_target() at the bottom
of the file will avoid forward declaration later (in the following
patch).

Nothing changed other than the functions location.

Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Breno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20231012111401.333798-2-leitao@debian.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/netconsole.c