Skip to content

Commit

Permalink
drm/vc4: Fixup of patches adding debugfs functions
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Stevenson <[email protected]>
  • Loading branch information
6by9 authored and pelwell committed Jan 4, 2024
1 parent c702109 commit 7da1db2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/gpu/drm/vc4/vc4_hvs.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ static int vc4_hvs_debugfs_dlist(struct seq_file *m, void *data)

static int vc6_hvs_debugfs_dlist(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
struct drm_device *dev = node->minor->dev;
struct drm_debugfs_entry *entry = m->private;
struct drm_device *dev = entry->dev;
struct vc4_dev *vc4 = to_vc4_dev(dev);
struct vc4_hvs *hvs = vc4->hvs;
struct drm_printer p = drm_seq_file_printer(m);
Expand Down Expand Up @@ -270,8 +270,8 @@ static int vc6_hvs_debugfs_dlist(struct seq_file *m, void *data)

static int vc5_hvs_debugfs_gamma(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
struct drm_device *dev = node->minor->dev;
struct drm_debugfs_entry *entry = m->private;
struct drm_device *dev = entry->dev;
struct vc4_dev *vc4 = to_vc4_dev(dev);
struct vc4_hvs *hvs = vc4->hvs;
struct drm_printer p = drm_seq_file_printer(m);
Expand Down Expand Up @@ -349,8 +349,8 @@ static int vc5_hvs_debugfs_gamma(struct seq_file *m, void *data)

static int vc4_hvs_debugfs_dlist_allocs(struct seq_file *m, void *data)
{
struct drm_info_node *node = m->private;
struct drm_device *dev = node->minor->dev;
struct drm_debugfs_entry *entry = m->private;
struct drm_device *dev = entry->dev;
struct vc4_dev *vc4 = to_vc4_dev(dev);
struct vc4_hvs *hvs = vc4->hvs;
struct drm_printer p = drm_seq_file_printer(m);
Expand Down

0 comments on commit 7da1db2

Please sign in to comment.