• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/dream/camera/

Lines Matching defs:filep

1382 static long msm_ioctl_config(struct file *filep, unsigned int cmd,
1387 struct msm_device *pmsm = filep->private_data;
1477 static long msm_ioctl_frame(struct file *filep, unsigned int cmd,
1482 struct msm_device *pmsm = filep->private_data;
1505 static long msm_ioctl_control(struct file *filep, unsigned int cmd,
1510 struct msm_control_device *ctrl_pmsm = filep->private_data;
1589 static int msm_release_config(struct inode *node, struct file *filep)
1592 struct msm_device *pmsm = filep->private_data;
1593 printk("msm_camera: RELEASE %s\n", filep->f_path.dentry->d_name.name);
1599 static int msm_release_control(struct inode *node, struct file *filep)
1602 struct msm_control_device *ctrl_pmsm = filep->private_data;
1605 filep->f_path.dentry->d_name.name);
1615 static int msm_release_frame(struct inode *node, struct file *filep)
1618 struct msm_device *pmsm = filep->private_data;
1620 filep->f_path.dentry->d_name.name);
1641 struct file *filep,
1647 poll_wait(filep, &sync->prev_frame_wait, pll_table);
1663 static unsigned int msm_poll_frame(struct file *filep,
1666 struct msm_device *pmsm = filep->private_data;
1667 return __msm_poll_frame(pmsm->sync, filep, pll_table);
1823 static int msm_open_common(struct inode *inode, struct file *filep,
1830 CDBG("msm_camera: open %s\n", filep->f_path.dentry->d_name.name);
1834 filep->f_path.dentry->d_name.name);
1838 rc = nonseekable_open(inode, filep);
1848 filep->private_data = pmsm;
1854 static int msm_open(struct inode *inode, struct file *filep)
1856 return msm_open_common(inode, filep, 1);
1859 static int msm_open_control(struct inode *inode, struct file *filep)
1868 rc = msm_open_common(inode, filep, 0);
1874 ctrl_pmsm->pmsm = filep->private_data;
1875 filep->private_data = ctrl_pmsm;