Commit 4c9bc75c authored by Dave Airlie's avatar Dave Airlie

drm/radeon/kms: mmio base/size should be resource_size_t.

Unsigned long is incorrect for 64-bit resources on 32-bit hw.
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent ed10f95d
...@@ -594,8 +594,8 @@ struct radeon_device { ...@@ -594,8 +594,8 @@ struct radeon_device {
struct radeon_object *fbdev_robj; struct radeon_object *fbdev_robj;
struct radeon_framebuffer *fbdev_rfb; struct radeon_framebuffer *fbdev_rfb;
/* Register mmio */ /* Register mmio */
unsigned long rmmio_base; resource_size_t rmmio_base;
unsigned long rmmio_size; resource_size_t rmmio_size;
void *rmmio; void *rmmio;
radeon_rreg_t mm_rreg; radeon_rreg_t mm_rreg;
radeon_wreg_t mm_wreg; radeon_wreg_t mm_wreg;
......
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