Lines Matching defs:files
9 * copy of this software and associated documentation files (the "Software"),
169 * drm_debugfs_create_files - Initialize a given set of debugfs files for DRM
171 * @files: The array of files to create
172 * @count: The number of files given
176 * Create a given set of debugfs files represented by an array of
177 * &struct drm_info_list in the given root directory. These files will be removed
180 int drm_debugfs_create_files(const struct drm_info_list *files, int count,
188 u32 features = files[i].driver_features;
199 tmp->dent = debugfs_create_file(files[i].name,
202 tmp->info_ent = &files[i];
229 DRM_ERROR("Failed to create core drm debugfs files\n");
236 DRM_ERROR("Failed to create atomic debugfs files\n");
267 int drm_debugfs_remove_files(const struct drm_info_list *files, int count,
278 if (tmp->info_ent == &files[i]) {