xref: /linux/include/linux/mfd/bcm2835-pm.h (revision 4f2c0a4acffbec01079c28f839422e64ddeff004)
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 	void __iomem *rpivid_asb;
13 };
14 
15 #endif /* BCM2835_MFD_PM_H */
16