Skip to content

Commit

Permalink
drm/amdkfd: add missing void argument to function kgd2kfd_init
Browse files Browse the repository at this point in the history
Function kgd2kfd_init is missing a void argument, add it
to clean up the non-ANSI function declaration.

Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
Colin Ian King authored and alexdeucher committed Oct 7, 2019
1 parent 8f49c82 commit 63617d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/amd/amdkfd/kfd_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void kfd_exit(void)
kfd_chardev_exit();
}

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

0 comments on commit 63617d8

Please sign in to comment.