Module Name: src
Committed By: riastradh
Date: Wed Jul 24 00:51:06 UTC 2013
Modified Files:
src/sys/external/bsd/drm2/dist/include/drm [riastradh-drm2]:
drm_hashtab.h
Log Message:
Include <linux/kernel.h> and <linux/types.h> in <drm/drm_hashtab.h>.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1.2.2 -r1.1.1.1.2.3 \
src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h
diff -u src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h:1.1.1.1.2.2 src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h:1.1.1.1.2.3
--- src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h:1.1.1.1.2.2 Tue Jul 23 21:28:23 2013
+++ src/sys/external/bsd/drm2/dist/include/drm/drm_hashtab.h Wed Jul 24 00:51:06 2013
@@ -35,7 +35,9 @@
#ifndef DRM_HASHTAB_H
#define DRM_HASHTAB_H
+#include <linux/kernel.h>
#include <linux/list.h>
+#include <linux/types.h>
#define drm_hash_entry(_ptr, _type, _member) container_of(_ptr, _type, _member)