diff options
author | Vinod Koul <vinod.koul@intel.com> | 2016-07-05 13:03:44 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-07-23 13:37:26 +0300 |
commit | 376ab15fe2a77e27cd7e9cb198530b221906dbcf (patch) | |
tree | c28a283ef9a741ba8bec39eb1e603c76a4dafa4d /drivers/dma/pxa_dma.c | |
parent | 23a396611fb1c009fcec432eb4076379a66deb5a (diff) | |
download | linux-376ab15fe2a77e27cd7e9cb198530b221906dbcf.tar.xz |
dmaengine: pxa_dma: remove owner assignment
debugfs file operations owner is set by core, so remove
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Diffstat (limited to 'drivers/dma/pxa_dma.c')
-rw-r--r-- | drivers/dma/pxa_dma.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/pxa_dma.c b/drivers/dma/pxa_dma.c index e756a30ccba2..1966c526fdbc 100644 --- a/drivers/dma/pxa_dma.c +++ b/drivers/dma/pxa_dma.c @@ -318,7 +318,6 @@ static int dbg_open_##name(struct inode *inode, struct file *file) \ return single_open(file, dbg_show_##name, inode->i_private); \ } \ static const struct file_operations dbg_fops_##name = { \ - .owner = THIS_MODULE, \ .open = dbg_open_##name, \ .llseek = seq_lseek, \ .read = seq_read, \ |