mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 11:56:58 +00:00
Several drivers can benefit from registering per-instance data along with the syscore operations. To achieve this, move the modifiable fields out of the syscore_ops structure and into a separate struct syscore that can be registered with the framework. Add a void * driver data field for drivers to store contextual data that will be passed to the syscore ops. Acked-by: Rafael J. Wysocki (Intel) <rafael@kernel.org> Signed-off-by: Thierry Reding <treding@nvidia.com>
13 lines
292 B
C
13 lines
292 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2019 Paul Cercueil <paul@crapouillou.net>
|
|
*/
|
|
#ifndef DRIVERS_CLK_INGENIC_PM_H
|
|
#define DRIVERS_CLK_INGENIC_PM_H
|
|
|
|
struct ingenic_cgu;
|
|
|
|
void ingenic_cgu_register_syscore(struct ingenic_cgu *cgu);
|
|
|
|
#endif /* DRIVERS_CLK_INGENIC_PM_H */
|