bcm2835-pm.h 262 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. #ifndef BCM2835_MFD_PM_H
  3. #define BCM2835_MFD_PM_H
  4. #include <linux/regmap.h>
  5. struct bcm2835_pm {
  6. struct device *dev;
  7. void __iomem *base;
  8. void __iomem *asb;
  9. void __iomem *rpivid_asb;
  10. };
  11. #endif /* BCM2835_MFD_PM_H */