Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a51cfdc authored by Jonathan Corbet's avatar Jonathan Corbet Committed by Rafael J. Wysocki
Browse files

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: default avatarJonathan Corbet <corbet@lwn.net>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 5f111616
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ struct devfreq_dev_status {
	unsigned long total_time;
	unsigned long busy_time;
	unsigned long current_frequency;
	void *private_date;
	void *private_data;
};

/**