pl111_nomadik.h 271 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0+
  2. #include <linux/device.h>
  3. #ifndef PL111_NOMADIK_H
  4. #define PL111_NOMADIK_H
  5. #endif
  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