Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Jonathan Corbet and committed by
Rafael J. Wysocki
1a51cfdc 5f111616

+1 -1
+1 -1
include/linux/devfreq.h
··· 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 /**