Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249411
b: refs/heads/master
c: ea1ce37
h: refs/heads/master
i:
  249409: 2f84ee8
  249407: 40a763b
v: v3
  • Loading branch information
Alan Cox authored and Greg Kroah-Hartman committed May 10, 2011
1 parent 7f3559f commit 8cac61c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 45 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b18aaa1c7cd53ff654d3872ad58ab95343bbe476
refs/heads/master: ea1ce3762b0ed9647d002dad8f3745c2ae534d0a
50 changes: 6 additions & 44 deletions trunk/drivers/staging/gma500/psb_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1313,13 +1313,6 @@ static int psb_register_rw_ioctl(struct drm_device *dev, void *data,
return 0;
}

/* always available as we are SIGIO'd */
static unsigned int psb_poll(struct file *filp,
struct poll_table_struct *wait)
{
return POLLIN | POLLRDNORM;
}

static int psb_driver_open(struct drm_device *dev, struct drm_file *priv)
{
return 0;
Expand All @@ -1345,29 +1338,9 @@ static long psb_unlocked_ioctl(struct file *filp, unsigned int cmd,
pm_runtime_allow(&dev->pdev->dev);
dev_priv->rpm_enabled = 1;
}
/*
* The driver private ioctls should be thread-safe.
*/

if ((nr >= DRM_COMMAND_BASE) && (nr < DRM_COMMAND_END)
&& (nr < DRM_COMMAND_BASE + dev->driver->num_ioctls)) {
struct drm_ioctl_desc *ioctl =
&psb_ioctls[nr - DRM_COMMAND_BASE];

if (unlikely(ioctl->cmd != cmd)) {
DRM_ERROR(
"Invalid drm cmnd %d ioctl->cmd %x, cmd %x\n",
nr - DRM_COMMAND_BASE, ioctl->cmd, cmd);
return -EINVAL;
}

return drm_ioctl(filp, cmd, arg);
}
/*
* Not all old drm ioctls are thread-safe.
*/

return drm_ioctl(filp, cmd, arg);

/* FIXME: do we need to wrap the other side of this */
}


Expand All @@ -1384,17 +1357,6 @@ static void psb_remove(struct pci_dev *pdev)
drm_put_dev(dev);
}

static int psb_open(struct inode *inode, struct file *filp)
{
return 0;
}

static int psb_release(struct inode *inode, struct file *filp)
{
return 0;
}


static const struct dev_pm_ops psb_pm_ops = {
.runtime_suspend = psb_runtime_suspend,
.runtime_resume = psb_runtime_resume,
Expand Down Expand Up @@ -1438,11 +1400,11 @@ static struct drm_driver driver = {

.fops = {
.owner = THIS_MODULE,
.open = psb_open,
.release = psb_release,
.open = drm_open,
.release = drm_release,
.unlocked_ioctl = psb_unlocked_ioctl,
/* .mmap = psb_mmap, */
.poll = psb_poll,
.mmap = drm_mmap,
.poll = drm_poll,
.fasync = drm_fasync,
.read = drm_read,
},
Expand Down

0 comments on commit 8cac61c

Please sign in to comment.