Sfoglia il codice sorgente

kernel/pm_qos_params.c: Remove unnecessary casts of private_data

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Joe Perches 14 anni fa
parent
commit
99a51792db
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      kernel/pm_qos_params.c

+ 1 - 1
kernel/pm_qos_params.c

@@ -394,7 +394,7 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
 	} else
 		return -EINVAL;
 
-	pm_qos_req = (struct pm_qos_request_list *)filp->private_data;
+	pm_qos_req = filp->private_data;
 	pm_qos_update_request(pm_qos_req, value);
 
 	return count;