Module Name: src
Committed By: riastradh
Date: Sun Dec 19 09:54:31 UTC 2021
Modified Files:
src/sys/external/bsd/drm2/dist/include/drm: drmP.h
Log Message:
Avoid declarations that appear in drm_debugfs.h
Author: Maya Rashish <[email protected]>
To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 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.63 src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.64
--- src/sys/external/bsd/drm2/dist/include/drm/drmP.h:1.63 Sun Dec 19 09:52:43 2021
+++ src/sys/external/bsd/drm2/dist/include/drm/drmP.h Sun Dec 19 09:54:31 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: drmP.h,v 1.63 2021/12/19 09:52:43 riastradh Exp $ */
+/* $NetBSD: drmP.h,v 1.64 2021/12/19 09:54:31 riastradh Exp $ */
/*
* Internal Header for the Direct Rendering Manager
@@ -119,28 +119,6 @@ struct dma_buf_attachment;
struct seq_file;
#endif
-/**
- * Info file list entry. This structure represents a debugfs or proc file to
- * be created by the drm core
- */
-struct drm_info_list {
- const char *name; /** file name */
- int (*show)(struct seq_file*, void*); /** show callback */
- u32 driver_features; /**< Required driver features for this entry */
- void *data;
-};
-
-/**
- * debugfs node structure. This structure represents a debugfs file.
- */
-struct drm_info_node {
- struct list_head list;
- struct drm_minor *minor;
- const struct drm_info_list *info_ent;
- struct dentry *dent;
-};
-
-
/******************************************************************/
/** \name Internal function definitions */
/*@{*/