[PATCH 2/5] drm/debugfs: rework debugfs directory creation v3
Tomer Tayar
ttayar at habana.ai
Sun Apr 16 16:03:14 UTC 2023
On 12/04/2023 17:52, Christian König wrote:
> /**
> - * accel_debugfs_init() - Initialize debugfs for accel minor
> + * accel_debugfs_init() - Register debugfs for accel minor
> + * @dev: Pointer to the device instance.
> + *
> + * This function creates a root directory for the device in debugfs.
> + */
> +void accel_debugfs_init(struct drm_device *dev)
> +{
> + drm_debugfs_dev_init(dev, accel_debugfs_root);
> +}
> +
> +/**
> + * accel_debugfs_register() - Register debugfs for device
> * @minor: Pointer to the drm_minor instance.
> * @minor_id: The minor's id
> *
> - * This function initializes the drm minor's debugfs members and creates
> - * a root directory for the minor in debugfs. It also creates common files
> - * for accelerators and calls the driver's debugfs init callback.
> + * Creates common files for accelerators.
> */
> -void accel_debugfs_init(struct drm_minor *minor, int minor_id)
> +void accel_debugfs_register(struct drm_device *dev)
> {
Maybe the accel_debugfs_init() description should now be "Initialize
debugfs for device"?
More information about the dri-devel
mailing list