xref: /linux-6.15/include/linux/mfd/bcm2835-pm.h (revision bbcee72c)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 
3 #ifndef BCM2835_MFD_PM_H
4 #define BCM2835_MFD_PM_H
5 
6 #include <linux/regmap.h>
7 
8 struct bcm2835_pm {
9 	struct device *dev;
10 	void __iomem *base;
11 	void __iomem *asb;
12 };
13 
14 #endif /* BCM2835_MFD_PM_H */
15