Lines Matching refs:dfops
56 const struct b43legacy_debugfs_fops *dfops) in fops_to_dfs_file() argument
61 p += dfops->file_struct_offset; in fops_to_dfs_file()
204 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_read() local
224 dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); in b43legacy_debugfs_read()
225 if (!dfops->read) { in b43legacy_debugfs_read()
229 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
238 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
240 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
243 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
272 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
290 dfops = container_of(file->f_op, struct b43legacy_debugfs_fops, fops); in b43legacy_debugfs_write()
291 if (!dfops->write) { in b43legacy_debugfs_write()
305 if (dfops->take_irqlock) { in b43legacy_debugfs_write()
307 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()
310 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()