From 7311dad7eeeef41850d4153b765c31b7a430cd42 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Thu, 29 Aug 2013 23:09:34 +0000 Subject: [PATCH] 'u_long' is consistently spelled 'unsigned long' in this file. Fix it. --- sys/dev/drm2/drmP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/drm2/drmP.h b/sys/dev/drm2/drmP.h index 624a316b6bc6..25765c4902b5 100644 --- a/sys/dev/drm2/drmP.h +++ b/sys/dev/drm2/drmP.h @@ -961,7 +961,7 @@ struct drm_device { drm_agp_head_t *agp; drm_sg_mem_t *sg; /* Scatter gather memory */ - u_long *ctx_bitmap; + unsigned long *ctx_bitmap; void *dev_private; unsigned int agp_buffer_token; drm_local_map_t *agp_buffer_map;