drm: remove drm_file_t, drm_device_t and drm_head_t typedefs
[deliverable/linux.git] / drivers / char / drm / drm_lock.c
index 62f12e745249a539a55403488b96cd641b1b09c1..c3a99870410609b2489c8898f974428dc5176d6e 100644 (file)
@@ -51,8 +51,8 @@ static int drm_notifier(void *priv);
 int drm_lock(struct inode *inode, struct file *filp,
             unsigned int cmd, unsigned long arg)
 {
-       drm_file_t *priv = filp->private_data;
-       drm_device_t *dev = priv->head->dev;
+       struct drm_file *priv = filp->private_data;
+       struct drm_device *dev = priv->head->dev;
        DECLARE_WAITQUEUE(entry, current);
        struct drm_lock lock;
        int ret = 0;
@@ -152,8 +152,8 @@ int drm_lock(struct inode *inode, struct file *filp,
 int drm_unlock(struct inode *inode, struct file *filp,
               unsigned int cmd, unsigned long arg)
 {
-       drm_file_t *priv = filp->private_data;
-       drm_device_t *dev = priv->head->dev;
+       struct drm_file *priv = filp->private_data;
+       struct drm_device *dev = priv->head->dev;
        struct drm_lock lock;
        unsigned long irqflags;
 
This page took 0.035696 seconds and 5 git commands to generate.