Commit 63617d8b authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher

drm/amdkfd: add missing void argument to function kgd2kfd_init

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>
parent 8f49c822
......@@ -82,7 +82,7 @@ static void kfd_exit(void)
kfd_chardev_exit();
}
int kgd2kfd_init()
int kgd2kfd_init(void)
{
return kfd_init();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment