diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-03-02 16:01:07 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-05-11 11:44:52 (GMT) |
commit | e40402cf182e798fd71824f4ad02fb51ce599bb2 (patch) | |
tree | 2b3c87838f5f53a4eb7e74738f6d792ab64d1c8d /drivers/video/omap2/dss/venc.c | |
parent | 461395c464e559a01cbc66d97ed4b8585b437cf9 (diff) | |
download | linux-fsl-qoriq-e40402cf182e798fd71824f4ad02fb51ce599bb2.tar.xz |
OMAPDSS: move the creation of debugfs files
Instead of having an ugly #ifdef mess in the core.c for creating debugfs
files, add a dss_debugfs_create_file() function that the dss drivers
can use to create the debugfs files.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/venc.c')
-rw-r--r-- | drivers/video/omap2/dss/venc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/venc.c b/drivers/video/omap2/dss/venc.c index 90b57c5..ebb6ec6 100644 --- a/drivers/video/omap2/dss/venc.c +++ b/drivers/video/omap2/dss/venc.c @@ -745,7 +745,7 @@ int venc_init_display(struct omap_dss_device *dssdev) return 0; } -void venc_dump_regs(struct seq_file *s) +static void venc_dump_regs(struct seq_file *s) { #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r)) @@ -874,6 +874,8 @@ static int omap_venchw_probe(struct platform_device *pdev) if (r) goto err_reg_panel_driver; + dss_debugfs_create_file("venc", venc_dump_regs); + return 0; err_reg_panel_driver: |