]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit
drm/radeon: Update radeon_get_vblank_counter_kms()
authorThierry Reding <treding@nvidia.com>
Wed, 16 Dec 2015 14:31:47 +0000 (15:31 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 18 Dec 2015 22:29:47 +0000 (17:29 -0500)
commit4e926d2db58244fca9845c78a5d6f873ac73795b
tree52882208ac71823daa56bf4fed813c6f48079b7d
parentc55d21ea5b6b0afffaac8d462ef70a57fa8272a5
drm/radeon: Update radeon_get_vblank_counter_kms()

Commit 88e72717c2de ("drm/irq: Use unsigned int pipe in public API")
updated the prototype of this function but not the implementation. This
wasn't noticed even through compile tests because the prototype is part
of the source file that uses it and hence the compiler won't know the
prototype when it compiles the implementation.

The right thing would've been to move the prototype to a header that's
included in radeon_kms.c so that the implementation signature could be
checked against it, but the closest thing would've been radeon_drv.h
and including that results in a lot of build errors, so we'll leave it
as is for now.

Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_kms.c