Module Name:    src
Committed By:   riastradh
Date:           Wed Jul 24 03:04:34 UTC 2013

Modified Files:
        src/sys/external/bsd/drm2/dist/include/drm [riastradh-drm2]: drmP.h

Log Message:
Add a default (panic) case to DRM_IS_BUS_SPACE_P in drmP.h.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1.2.42 -r1.1.1.1.2.43 \
    src/sys/external/bsd/drm2/dist/include/drm/drmP.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/drmP.h
diff -u src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.1.1.1.2.42 src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.1.1.1.2.43
--- src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.1.1.1.2.42	Wed Jul 24 02:54:09 2013
+++ src/sys/external/bsd/drm2/dist/include/drm/drmP.h	Wed Jul 24 03:04:34 2013
@@ -2046,6 +2046,9 @@ DRM_IS_BUS_SPACE(struct drm_local_map *m
 
 	case _DRM_GEM:
 		panic("I don't know how to access drm gem memory!");
+
+	default:
+		panic("I don't know what kind of memory you mean!");
 	}
 }
 

Reply via email to