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(debugfs_real_fops(file), in b43legacy_debugfs_read()
226 if (!dfops->read) { in b43legacy_debugfs_read()
230 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
239 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
241 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
244 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
273 struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
291 dfops = container_of(debugfs_real_fops(file), in b43legacy_debugfs_write()
293 if (!dfops->write) { in b43legacy_debugfs_write()
307 if (dfops->take_irqlock) { in b43legacy_debugfs_write()
309 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()
312 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()