Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7200be7c authored by Kees Cook's avatar Kees Cook Committed by Alex Williamson
Browse files

vfio: platform: remove needless stack usage



request_module already takes format strings, so no need to duplicate
the effort.

Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 7d10f4e0
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -51,13 +51,10 @@ static vfio_platform_reset_fn_t vfio_platform_lookup_reset(const char *compat,

static void vfio_platform_get_reset(struct vfio_platform_device *vdev)
{
	char modname[256];

	vdev->reset = vfio_platform_lookup_reset(vdev->compat,
						&vdev->reset_module);
	if (!vdev->reset) {
		snprintf(modname, 256, "vfio-reset:%s", vdev->compat);
		request_module(modname);
		request_module("vfio-reset:%s", vdev->compat);
		vdev->reset = vfio_platform_lookup_reset(vdev->compat,
							 &vdev->reset_module);
	}