summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2015-05-19 18:37:52 -0700
committerAlex Deucher <alexander.deucher@amd.com>2015-05-26 10:31:25 -0400
commita10e04f4c54f02d397f429765acb09d81d344587 (patch)
tree9c00cbcd065fc5c8df4a556ee4045145e0471178
parent84bcd469592eadbf731c07ed7f6654dc71bbe059 (diff)
downloadop-kernel-dev-a10e04f4c54f02d397f429765acb09d81d344587.zip
op-kernel-dev-a10e04f4c54f02d397f429765acb09d81d344587.tar.gz
drm/radeon: Use DECLARE_BITMAP
Use the generic mechanism to declare a bitmap instead of unsigned long. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/radeon/radeon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
index ccebf62..b0b73f2 100644
--- a/drivers/gpu/drm/radeon/radeon.h
+++ b/drivers/gpu/drm/radeon/radeon.h
@@ -719,7 +719,7 @@ struct radeon_doorbell {
resource_size_t size;
u32 __iomem *ptr;
u32 num_doorbells; /* Number of doorbells actually reserved for radeon. */
- unsigned long used[DIV_ROUND_UP(RADEON_MAX_DOORBELLS, BITS_PER_LONG)];
+ DECLARE_BITMAP(used, RADEON_MAX_DOORBELLS);
};
int radeon_doorbell_get(struct radeon_device *rdev, u32 *page);
OpenPOWER on IntegriCloud