pl111_nomadik.h 261 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0+
  2. #ifndef PL111_NOMADIK_H
  3. #define PL111_NOMADIK_H
  4. #endif
  5. struct device;
  6. #ifdef CONFIG_ARCH_NOMADIK
  7. void pl111_nomadik_init(struct device *dev);
  8. #else
  9. static inline void pl111_nomadik_init(struct device *dev)
  10. {
  11. }
  12. #endif