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

Commit 1549bc8c authored by Nathan Chancellor's avatar Nathan Chancellor Committed by Greg Kroah-Hartman
Browse files

drm/amdkfd: add missing void argument to function kgd2kfd_init



From: Colin Ian King <colin.king@canonical.com>

commit 63617d8b125ed9f674133dd000b6df58d6b2965a upstream.

Function kgd2kfd_init is missing a void argument, add it
to clean up the non-ANSI function declaration.

Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarNathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fdfb9ae2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ static void kfd_exit(void)
	kfd_chardev_exit();
}

int kgd2kfd_init()
int kgd2kfd_init(void)
{
	return kfd_init();
}