diff mbox

drm: reorder drm_open_hash to remove padding on 64 bit builds

Message ID 1298988556.2030.4.camel@castor.rsk (mailing list archive)
State New, archived
Headers show

Commit Message

richard kennedy March 1, 2011, 2:09 p.m. UTC
None
diff mbox

Patch

diff --git a/include/drm/drm_hashtab.h b/include/drm/drm_hashtab.h
index 0af087a..ff2ab48 100644
--- a/include/drm/drm_hashtab.h
+++ b/include/drm/drm_hashtab.h
@@ -48,8 +48,8 @@  struct drm_open_hash {
 	unsigned int size;
 	unsigned int order;
 	unsigned int fill;
-	struct hlist_head *table;
 	int use_vmalloc;
+	struct hlist_head *table;
 };