mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
7037f7141c
Update header inclusions to follow IWYU (Include What You Use) principle. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Thomas Weißschuh <linux@weissschuh.net> Link: https://lore.kernel.org/r/20231221144447.2762077-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
368 B
C
20 lines
368 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Pvpanic Device Support
|
|
*
|
|
* Copyright (C) 2021 Oracle.
|
|
*/
|
|
|
|
#ifndef PVPANIC_H_
|
|
#define PVPANIC_H_
|
|
|
|
#include <linux/compiler_types.h>
|
|
|
|
struct attribute_group;
|
|
struct device;
|
|
|
|
int devm_pvpanic_probe(struct device *dev, void __iomem *base);
|
|
extern const struct attribute_group *pvpanic_dev_groups[];
|
|
|
|
#endif /* PVPANIC_H_ */
|