svn commit: r255045 - head/sys/dev/drm2

Jung-uk Kim jkim at FreeBSD.org
Thu Aug 29 23:09:34 UTC 2013


Author: jkim
Date: Thu Aug 29 23:09:34 2013
New Revision: 255045
URL: http://svnweb.freebsd.org/changeset/base/255045

Log:
  'u_long' is consistently spelled 'unsigned long' in this file.  Fix it.

Modified:
  head/sys/dev/drm2/drmP.h

Modified: head/sys/dev/drm2/drmP.h
==============================================================================
--- head/sys/dev/drm2/drmP.h	Thu Aug 29 22:46:21 2013	(r255044)
+++ head/sys/dev/drm2/drmP.h	Thu Aug 29 23:09:34 2013	(r255045)
@@ -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;


More information about the svn-src-all mailing list