Home
last modified time | relevance | path

Searched refs:fops_get (Results 1 – 12 of 12) sorted by relevance

/linux-2.4.37.9/drivers/telephony/
Dphonedev.c60 new_fops = fops_get(p->f_op); in phone_open()
69 if (p == NULL || (new_fops = fops_get(p->f_op)) == NULL) in phone_open()
81 file->f_op = fops_get(old_fops); in phone_open()
/linux-2.4.37.9/drivers/char/
Dmisc.c116 new_fops = fops_get(c->fops); in misc_open()
126 if (c == &misc_list || (new_fops = fops_get(c->fops)) == NULL) in misc_open()
137 file->f_op = fops_get(old_fops); in misc_open()
/linux-2.4.37.9/drivers/sound/
Dsound_core.c498 new_fops = fops_get(s->unit_fops); in soundcore_open()
517 new_fops = fops_get(s->unit_fops); in soundcore_open()
535 file->f_op = fops_get(old_fops); in soundcore_open()
/linux-2.4.37.9/drivers/char/drm/
Ddrm_stub.h58 filp->f_op = fops_get(DRM(stub_list)[minor].fops); in DRM()
61 filp->f_op = fops_get(old_fops); in DRM()
/linux-2.4.37.9/fs/
Ddevices.c73 ret = fops_get(chrdevs[major].fops); in get_chrfops()
91 ret = fops_get(chrdevs[major].fops); in get_chrfops()
Dopen.c700 f->f_op = fops_get(inode->i_fop); in dentry_open()
/linux-2.4.37.9/drivers/input/
Dinput.c378 if (!handler || !(new_fops = fops_get(handler->fops))) in input_open_file()
398 file->f_op = fops_get(old_fops); in input_open_file()
/linux-2.4.37.9/drivers/media/video/
Dvideodev.c161 file->f_op = fops_get(vfl->fops); in video_open()
166 file->f_op = fops_get(old_fops); in video_open()
/linux-2.4.37.9/drivers/usb/
Dusb.c2333 if (!c || !(new_fops = fops_get(c->fops))) in usb_open()
2342 file->f_op = fops_get(old_fops); in usb_open()
/linux-2.4.37.9/net/atm/
Dcommon.c875 fops_get(&atm_tcp_ops); in vcc_ioctl()
/linux-2.4.37.9/fs/nfsd/
Dvfs.c471 filp->f_op = fops_get(inode->i_fop); in nfsd_open()
/linux-2.4.37.9/include/linux/
Dfs.h1016 #define fops_get(fops) \ macro