Commit 1a51cfdc4516a6e1f2c1f8a579630a027c30331a

Authored by Jonathan Corbet
Committed by Rafael J. Wysocki
1 parent 5f11161675

PM / devfreq: fix private_data

The "private_date" field in struct devfreq_dev_status almost certainly
wants to be "private_data"; since there are no in-tree users of this
functionality, now seems like an easy time to make the fix.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/linux/devfreq.h
... ... @@ -41,7 +41,7 @@
41 41 unsigned long total_time;
42 42 unsigned long busy_time;
43 43 unsigned long current_frequency;
44   - void *private_date;
  44 + void *private_data;
45 45 };
46 46  
47 47 /**