Lines Matching refs:dfops
42 const struct b43legacy_debugfs_fops *dfops) in fops_to_dfs_file() argument
47 p += dfops->file_struct_offset; in fops_to_dfs_file()
190 const struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_read() local
210 dfops = debugfs_get_aux(file); in b43legacy_debugfs_read()
211 if (!dfops->read) { in b43legacy_debugfs_read()
215 dfile = fops_to_dfs_file(dev, dfops); in b43legacy_debugfs_read()
224 if (dfops->take_irqlock) { in b43legacy_debugfs_read()
226 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
229 ret = dfops->read(dev, buf, bufsize); in b43legacy_debugfs_read()
258 const struct b43legacy_debugfs_fops *dfops; in b43legacy_debugfs_write() local
276 dfops = debugfs_get_aux(file); in b43legacy_debugfs_write()
277 if (!dfops->write) { in b43legacy_debugfs_write()
291 if (dfops->take_irqlock) { in b43legacy_debugfs_write()
293 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()
296 err = dfops->write(dev, buf, count); in b43legacy_debugfs_write()